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