pub struct ExecTablesTx<'tx> { /* private fields */ }Expand description
Streaming result of an execution within a transaction.
This is an in-flight type and is !Send + !Sync (thread-affine).
Implementations§
Source§impl ExecTablesTx<'_>
impl ExecTablesTx<'_>
Sourcepub fn next_table(&mut self) -> Result<Option<TableResult>>
pub fn next_table(&mut self) -> Result<Option<TableResult>>
Fetch the next result table from the transaction execution stream.
Returns Ok(None) when exhausted (and closes the underlying stream).
Trait Implementations§
Auto Trait Implementations§
impl<'tx> Freeze for ExecTablesTx<'tx>
impl<'tx> !RefUnwindSafe for ExecTablesTx<'tx>
impl<'tx> !Send for ExecTablesTx<'tx>
impl<'tx> !Sync for ExecTablesTx<'tx>
impl<'tx> Unpin for ExecTablesTx<'tx>
impl<'tx> UnsafeUnpin for ExecTablesTx<'tx>
impl<'tx> !UnwindSafe for ExecTablesTx<'tx>
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