pub struct TransactionBuilder { /* private fields */ }
Expand description
A builder for database transactions.
Implementations§
Source§impl TransactionBuilder
impl TransactionBuilder
Sourcepub fn isolation_level(self, isolation_level: IsolationLevel) -> Self
pub fn isolation_level(self, isolation_level: IsolationLevel) -> Self
Sets the isolation level of the transaction.
Sourcepub fn deferrable(self, deferrable: bool) -> Self
pub fn deferrable(self, deferrable: bool) -> Self
Sets the deferrability of the transaction.
If the transaction is also serializable and read only, creation of the transaction may block, but when it completes the transaction is able to run with less overhead and a guarantee that it will not be aborted due to serialization failure.
Auto Trait Implementations§
impl Freeze for TransactionBuilder
impl RefUnwindSafe for TransactionBuilder
impl Send for TransactionBuilder
impl Sync for TransactionBuilder
impl Unpin for TransactionBuilder
impl UnwindSafe for TransactionBuilder
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