pub struct Blob<'c, 'p, P: Sqlite3BlobIo> { /* private fields */ }Expand description
RAII wrapper around an incremental blob handle.
The handle borrows the originating connection so blob operations cannot outlive the database handle.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'c, 'p, P> Freeze for Blob<'c, 'p, P>
impl<'c, 'p, P> RefUnwindSafe for Blob<'c, 'p, P>where
P: RefUnwindSafe,
<P as Sqlite3BlobIo>::Blob: RefUnwindSafe,
<P as Sqlite3Api>::Db: RefUnwindSafe,
impl<'c, 'p, P> !Send for Blob<'c, 'p, P>
impl<'c, 'p, P> !Sync for Blob<'c, 'p, P>
impl<'c, 'p, P> Unpin for Blob<'c, 'p, P>
impl<'c, 'p, P> UnsafeUnpin for Blob<'c, 'p, P>
impl<'c, 'p, P> UnwindSafe for Blob<'c, 'p, P>where
P: RefUnwindSafe,
<P as Sqlite3BlobIo>::Blob: RefUnwindSafe,
<P as Sqlite3Api>::Db: RefUnwindSafe,
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