[][src]Struct tokio_postgres::TransactionBuilder

pub struct TransactionBuilder<'a> { /* fields omitted */ }

A builder for database transactions.

Methods

impl<'a> TransactionBuilder<'a>[src]

pub fn isolation_level(self, isolation_level: IsolationLevel) -> Self[src]

Sets the isolation level of the transaction.

pub fn read_only(self, read_only: bool) -> Self[src]

Sets the access mode of the transaction.

pub fn deferrable(self, deferrable: bool) -> Self[src]

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.

pub async fn start(self) -> Result<Transaction<'a>, Error>[src]

Begins the transaction.

The transaction will roll back by default - use the commit method to commit it.

Auto Trait Implementations

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,