pub struct VfsPtr(pub *mut sqlite3_vfs);
Expand description
Wrap the pVfs pointer, which is often used in VFS implementation.
Use vfs pointer as the map key to find the corresponding vfs handle, such as OpfsSAHPool
.
Tuple Fields§
§0: *mut sqlite3_vfs
Trait Implementations§
impl Eq for VfsPtr
impl Send for VfsPtr
impl StructuralPartialEq for VfsPtr
impl Sync for VfsPtr
Auto Trait Implementations§
impl Freeze for VfsPtr
impl RefUnwindSafe for VfsPtr
impl Unpin for VfsPtr
impl UnwindSafe for VfsPtr
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