Trait mysql::ConvIr [] [src]

pub trait ConvIr<T>: Sized {
    fn new(v: Value) -> MyResult<Self>;
    fn commit(self) -> T;
    fn rollback(self) -> Value;
}

Basic operations on FromValue conversion intermediate result.

See FromValue

Required Methods

fn new(v: Value) -> MyResult<Self>

fn commit(self) -> T

fn rollback(self) -> Value

Implementors