Skip to main content

SqlDataServiceTransaction

Struct SqlDataServiceTransaction 

Source
pub struct SqlDataServiceTransaction<'a, D, Tx: SqlTransport + SqlTransaction, S> {
    pub dialect: &'a D,
    pub transport: Tx,
    pub schema_provider: &'a S,
}

Fields§

§dialect: &'a D§transport: Tx§schema_provider: &'a S

Trait Implementations§

Source§

impl<'a, D: Clone, Tx: Clone + SqlTransport + SqlTransaction, S: Clone> Clone for SqlDataServiceTransaction<'a, D, Tx, S>

Source§

fn clone(&self) -> SqlDataServiceTransaction<'a, D, Tx, S>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a, D: SqlDialect + Send + Sync, Tx: SqlTransport + SqlTransaction<Error = <Tx as SqlTransport>::Error> + Send + Sync, S: SchemaProvider + Send + Sync> DataServiceExecutor for SqlDataServiceTransaction<'a, D, Tx, S>

Source§

impl<'a, D: SqlDialect + Send + Sync, Tx: SqlTransport + SqlTransaction<Error = <Tx as SqlTransport>::Error> + Send + Sync, S: SchemaProvider + Send + Sync> MutationExecutor for SqlDataServiceTransaction<'a, D, Tx, S>

Source§

fn mutate( &self, request: MutationRequest, ) -> impl Future<Output = Result<MutationResult, Self::Error>> + Send

Source§

impl<'a, D: SqlDialect + Send + Sync, Tx: SqlTransport + SqlTransaction<Error = <Tx as SqlTransport>::Error> + Send + Sync, S: SchemaProvider + Send + Sync> QueryExecutor for SqlDataServiceTransaction<'a, D, Tx, S>

Source§

fn query( &self, request: QueryRequest, ) -> impl Future<Output = Result<QueryResult, Self::Error>> + Send

Source§

impl<'a, D: SqlDialect + Send + Sync, Tx: SqlTransport + SqlTransaction<Error = <Tx as SqlTransport>::Error> + Send + Sync, S: SchemaProvider + Send + Sync> Transaction for SqlDataServiceTransaction<'a, D, Tx, S>

Source§

type Error = SqlExecutorError<<Tx as SqlTransport>::Error>

Source§

fn commit(self) -> impl Future<Output = Result<(), Self::Error>> + Send

Source§

fn rollback(self) -> impl Future<Output = Result<(), Self::Error>> + Send

Auto Trait Implementations§

§

impl<'a, D, Tx, S> Freeze for SqlDataServiceTransaction<'a, D, Tx, S>
where Tx: Freeze,

§

impl<'a, D, Tx, S> RefUnwindSafe for SqlDataServiceTransaction<'a, D, Tx, S>

§

impl<'a, D, Tx, S> Send for SqlDataServiceTransaction<'a, D, Tx, S>
where D: Sync, S: Sync,

§

impl<'a, D, Tx, S> Sync for SqlDataServiceTransaction<'a, D, Tx, S>
where D: Sync, S: Sync,

§

impl<'a, D, Tx, S> Unpin for SqlDataServiceTransaction<'a, D, Tx, S>
where Tx: Unpin,

§

impl<'a, D, Tx, S> UnsafeUnpin for SqlDataServiceTransaction<'a, D, Tx, S>
where Tx: UnsafeUnpin,

§

impl<'a, D, Tx, S> UnwindSafe for SqlDataServiceTransaction<'a, D, Tx, S>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.