Enum mysql::IsolationLevel[][src]

pub enum IsolationLevel {
    ReadUncommitted,
    ReadCommitted,
    RepeatableRead,
    Serializable,
}

Variants

Trait Implementations

impl PartialEq for IsolationLevel
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for IsolationLevel
[src]

impl Clone for IsolationLevel
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for IsolationLevel
[src]

impl Debug for IsolationLevel
[src]

Formats the value using the given formatter. Read more

impl Display for IsolationLevel
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations