[][src]Struct sqlx_core::Transaction

pub struct Transaction<T> where
    T: Connection + Send + 'static, 
{ /* fields omitted */ }

Methods

impl<T> Transaction<T> where
    T: Connection + Send + 'static, 
[src]

pub async fn begin(__arg0: Self) -> Result<Transaction<T>>[src]

pub async fn commit(__arg0: Self) -> Result<T>[src]

pub async fn rollback(__arg0: Self) -> Result<T>[src]

Trait Implementations

impl<T> Connection for Transaction<T> where
    T: Connection
[src]

impl<Conn> Deref for Transaction<Conn> where
    Conn: Connection
[src]

type Target = Conn

The resulting type after dereferencing.

impl<Conn> DerefMut for Transaction<Conn> where
    Conn: Connection
[src]

impl<Conn> Drop for Transaction<Conn> where
    Conn: Connection
[src]

impl<T> Executor for Transaction<T> where
    T: Connection
[src]

type Database = T::Database

Auto Trait Implementations

impl<T> RefUnwindSafe for Transaction<T> where
    T: RefUnwindSafe

impl<T> Send for Transaction<T>

impl<T> Sync for Transaction<T> where
    T: Sync

impl<T> Unpin for Transaction<T> where
    T: Unpin

impl<T> UnwindSafe for Transaction<T> where
    T: UnwindSafe

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, DB> HasSqlType<&'_ T> for DB where
    DB: HasSqlType<T>,
    T: ?Sized
[src]

impl<T, DB> HasSqlType<Option<T>> for DB where
    DB: HasSqlType<T>, 
[src]

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

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.