Trait transaction::IntoTransaction [] [src]

pub trait IntoTransaction<Ctx> {
    type Tx: Transaction<Ctx = Ctx, Item = Self::Item, Err = Self::Err>;
    type Err;
    type Item;
    fn into_transaction(self) -> Self::Tx;
}

types than can be converted into transaction

Associated Types

Required Methods

Implementors