pub struct SqliteSavepoint { /* private fields */ }Trait Implementations§
Source§impl Drop for SqliteSavepoint
impl Drop for SqliteSavepoint
Source§impl Executor for SqliteSavepoint
impl Executor for SqliteSavepoint
type Row = SqliteRow
type Error = SqliteError
fn execute<'life0, 'life1, 'async_trait>(
&'life0 self,
query: &'life1 CompiledQuery,
) -> Pin<Box<dyn Future<Output = Result<ExecuteResult, Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn fetch_all<'life0, 'life1, 'async_trait>(
&'life0 self,
query: &'life1 CompiledQuery,
) -> Pin<Box<dyn Future<Output = Result<QueryResult<Self::Row>, Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Auto Trait Implementations§
impl !RefUnwindSafe for SqliteSavepoint
impl !UnwindSafe for SqliteSavepoint
impl Freeze for SqliteSavepoint
impl Send for SqliteSavepoint
impl Sync for SqliteSavepoint
impl Unpin for SqliteSavepoint
impl UnsafeUnpin for SqliteSavepoint
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