Struct deadpool_postgres::TransactionBuilder
source · pub struct TransactionBuilder<'a> { /* private fields */ }
Expand description
Wrapper around tokio_postgres::TransactionBuilder
with a
StatementCache
from the Client
object it was created by.
Implementations§
source§impl<'a> TransactionBuilder<'a>
impl<'a> TransactionBuilder<'a>
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.
sourcepub async fn start(self) -> Result<Transaction<'a>, Error>
pub async fn start(self) -> Result<Transaction<'a>, Error>
Begins the Transaction
.
The transaction will roll back by default - use the commit method to commit it.
Trait Implementations§
source§impl<'a> Debug for TransactionBuilder<'a>
impl<'a> Debug for TransactionBuilder<'a>
source§impl<'a> Deref for TransactionBuilder<'a>
impl<'a> Deref for TransactionBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for TransactionBuilder<'a>
impl<'a> !RefUnwindSafe for TransactionBuilder<'a>
impl<'a> Send for TransactionBuilder<'a>
impl<'a> Sync for TransactionBuilder<'a>
impl<'a> Unpin for TransactionBuilder<'a>
impl<'a> !UnwindSafe for TransactionBuilder<'a>
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