pub struct Statement<'conn> { /* private fields */ }Expand description
A prepared SQLite statement.
Created via Connection::prepare.
Tied to the lifetime of the connection that created it.
Finalized when dropped.
Implementations§
Auto Trait Implementations§
impl<'conn> !Send for Statement<'conn>
impl<'conn> !Sync for Statement<'conn>
impl<'conn> Freeze for Statement<'conn>
impl<'conn> RefUnwindSafe for Statement<'conn>
impl<'conn> Unpin for Statement<'conn>
impl<'conn> UnsafeUnpin for Statement<'conn>
impl<'conn> UnwindSafe for Statement<'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