#[repr(C)]pub struct sqlite3_vfs {Show 22 fields
pub iVersion: i32,
pub szOsFile: i32,
pub mxPathname: i32,
pub pNext: *mut sqlite3_vfs,
pub zName: *const i8,
pub pAppData: *mut c_void,
pub xOpen: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8, *mut sqlite3_file, i32, *mut i32) -> i32>,
pub xDelete: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8, i32) -> i32>,
pub xAccess: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8, i32, *mut i32) -> i32>,
pub xFullPathname: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8, i32, *mut i8) -> i32>,
pub xDlOpen: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8) -> *mut c_void>,
pub xDlError: Option<unsafe extern "C" fn(*mut sqlite3_vfs, i32, *mut i8)>,
pub xDlSym: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *mut c_void, *const i8) -> Option<unsafe extern "C" fn(*mut sqlite3_vfs, *mut c_void, *const i8)>>,
pub xDlClose: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *mut c_void)>,
pub xRandomness: Option<unsafe extern "C" fn(*mut sqlite3_vfs, i32, *mut i8) -> i32>,
pub xSleep: Option<unsafe extern "C" fn(*mut sqlite3_vfs, i32) -> i32>,
pub xCurrentTime: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *mut f64) -> i32>,
pub xGetLastError: Option<unsafe extern "C" fn(*mut sqlite3_vfs, i32, *mut i8) -> i32>,
pub xCurrentTimeInt64: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *mut i64) -> i32>,
pub xSetSystemCall: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8, Option<unsafe extern "C" fn()>) -> i32>,
pub xGetSystemCall: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8) -> Option<unsafe extern "C" fn()>>,
pub xNextSystemCall: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8) -> *const i8>,
}
Fields§
§iVersion: i32
§szOsFile: i32
§mxPathname: i32
§pNext: *mut sqlite3_vfs
§zName: *const i8
§pAppData: *mut c_void
§xOpen: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8, *mut sqlite3_file, i32, *mut i32) -> i32>
§xDelete: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8, i32) -> i32>
§xAccess: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8, i32, *mut i32) -> i32>
§xFullPathname: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8, i32, *mut i8) -> i32>
§xDlOpen: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8) -> *mut c_void>
§xDlError: Option<unsafe extern "C" fn(*mut sqlite3_vfs, i32, *mut i8)>
§xDlSym: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *mut c_void, *const i8) -> Option<unsafe extern "C" fn(*mut sqlite3_vfs, *mut c_void, *const i8)>>
§xDlClose: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *mut c_void)>
§xRandomness: Option<unsafe extern "C" fn(*mut sqlite3_vfs, i32, *mut i8) -> i32>
§xSleep: Option<unsafe extern "C" fn(*mut sqlite3_vfs, i32) -> i32>
§xCurrentTime: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *mut f64) -> i32>
§xGetLastError: Option<unsafe extern "C" fn(*mut sqlite3_vfs, i32, *mut i8) -> i32>
§xCurrentTimeInt64: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *mut i64) -> i32>
§xSetSystemCall: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8, Option<unsafe extern "C" fn()>) -> i32>
§xGetSystemCall: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8) -> Option<unsafe extern "C" fn()>>
§xNextSystemCall: Option<unsafe extern "C" fn(*mut sqlite3_vfs, *const i8) -> *const i8>
Trait Implementations§
Source§impl Clone for sqlite3_vfs
impl Clone for sqlite3_vfs
Source§fn clone(&self) -> sqlite3_vfs
fn clone(&self) -> sqlite3_vfs
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for sqlite3_vfs
impl Debug for sqlite3_vfs
impl Copy for sqlite3_vfs
Auto Trait Implementations§
impl Freeze for sqlite3_vfs
impl RefUnwindSafe for sqlite3_vfs
impl !Send for sqlite3_vfs
impl !Sync for sqlite3_vfs
impl Unpin for sqlite3_vfs
impl UnwindSafe for sqlite3_vfs
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