pub enum TransactionBehavior {
Deferred,
Immediate,
Exclusive,
}
Expand description
The behavior of a SQLite transaction.
Variants§
Deferred
DEFERRED means that the transaction does not actually start until the database is first accessed.
Immediate
IMMEDIATE cause the database connection to start a new write immediately, without waiting for a writes statement.
Exclusive
EXCLUSIVE prevents other database connections from reading the database while the transaction is underway.
Trait Implementations§
Source§impl Clone for TransactionBehavior
impl Clone for TransactionBehavior
Source§fn clone(&self) -> TransactionBehavior
fn clone(&self) -> TransactionBehavior
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TransactionBehavior
impl Debug for TransactionBehavior
Source§impl Hash for TransactionBehavior
impl Hash for TransactionBehavior
Source§impl PartialEq for TransactionBehavior
impl PartialEq for TransactionBehavior
impl Copy for TransactionBehavior
impl Eq for TransactionBehavior
impl StructuralPartialEq for TransactionBehavior
Auto Trait Implementations§
impl Freeze for TransactionBehavior
impl RefUnwindSafe for TransactionBehavior
impl Send for TransactionBehavior
impl Sync for TransactionBehavior
impl Unpin for TransactionBehavior
impl UnwindSafe for TransactionBehavior
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more