pub trait SqlEndTransaction: SqlHandle {
    fn commit(&mut self) -> SqlResult { ... }
    fn rollback(&mut self) -> SqlResult { ... }
    fn end_transaction(&mut self, commit: bool) -> SqlResult { ... }
    fn commit_async(self) -> SqlFuture<Self> { ... }
    fn rollback_async(self) -> SqlFuture<Self> { ... }
    fn end_transaction_async(self, commit: bool) -> SqlFuture<Self> { ... }
}

Provided Methods§

Implementors§