pub trait Transactional: Send + Sync {
type Tx: Transaction;
// Required method
fn begin_transaction(&self) -> Result<Self::Tx>;
}Expand description
Ability to start a transaction. Implemented by DatabaseHandler.
pub trait Transactional: Send + Sync {
type Tx: Transaction;
// Required method
fn begin_transaction(&self) -> Result<Self::Tx>;
}Ability to start a transaction. Implemented by DatabaseHandler.