pub struct TursoTransaction<'conn> { /* private fields */ }Expand description
A transaction handle for TursoExecutor.
Created with TursoExecutor::transaction. Queries executed via this
handle are scoped to the same transaction until committed or rolled back.
Implementations§
Source§impl TursoTransaction<'_>
impl TursoTransaction<'_>
Sourcepub fn raw(&self) -> &Transaction<'_>
pub fn raw(&self) -> &Transaction<'_>
Returns the underlying Turso transaction handle.
Sourcepub async fn query_void(&self, query: Query) -> Result<(), DBError>
pub async fn query_void(&self, query: Query) -> Result<(), DBError>
Executes a query inside this transaction, discarding results.
Sourcepub async fn query_one<T: FromRow + Send + 'static>(
&self,
query: Query,
) -> Result<Option<T>, DBError>
pub async fn query_one<T: FromRow + Send + 'static>( &self, query: Query, ) -> Result<Option<T>, DBError>
Executes a query inside this transaction, returning at most one row.
Trait Implementations§
Auto Trait Implementations§
impl<'conn> Freeze for TursoTransaction<'conn>
impl<'conn> !RefUnwindSafe for TursoTransaction<'conn>
impl<'conn> Send for TursoTransaction<'conn>
impl<'conn> Sync for TursoTransaction<'conn>
impl<'conn> Unpin for TursoTransaction<'conn>
impl<'conn> UnsafeUnpin for TursoTransaction<'conn>
impl<'conn> !UnwindSafe for TursoTransaction<'conn>
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more