Enum sherwood::IsolationLevel [-] [+] [src]

pub enum IsolationLevel {
    ReadCommitted,
    ReadUncommited,
}

Transaction isolation level

Variants

ReadCommitted

Prevent a transaction from reading uncommitted data from other transactions.

ReadUncommited

Allow a transaction to see uncommitted data from other transaction.

Trait Implementations

Derived Implementations

impl Clone for IsolationLevel

fn clone(&self) -> IsolationLevel

fn clone_from(&mut self, source: &Self)

impl Copy for IsolationLevel