[][src]Struct sqlite3_native::sqlite3_vfs

#[repr(C)]pub struct sqlite3_vfs {
    pub iVersion: c_int,
    pub szOsFile: c_int,
    pub mxPathname: c_int,
    pub pNext: *mut sqlite3_vfs,
    pub zName: *const c_char,
    pub pAppData: *mut c_void,
    pub xOpen: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char, _: *mut sqlite3_file, _: c_int, _: *mut c_int) -> c_int>,
    pub xDelete: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char, _: c_int) -> c_int>,
    pub xAccess: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char, _: c_int, _: *mut c_int) -> c_int>,
    pub xFullPathname: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char, _: c_int, _: *mut c_char) -> c_int>,
    pub xDlOpen: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char) -> *mut c_void>,
    pub xDlError: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: c_int, _: *mut c_char)>,
    pub xDlSym: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *mut c_void, _: *const c_char) -> Option<unsafe extern "C" fn()>>,
    pub xDlClose: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *mut c_void)>,
    pub xRandomness: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: c_int, _: *mut c_char) -> c_int>,
    pub xSleep: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: c_int) -> c_int>,
    pub xCurrentTime: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *mut c_double) -> c_int>,
    pub xGetLastError: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: c_int, _: *mut c_char) -> c_int>,
    pub xCurrentTimeInt64: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *mut sqlite3_int64) -> c_int>,
    pub xSetSystemCall: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char, _: sqlite3_syscall_ptr) -> c_int>,
    pub xGetSystemCall: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char) -> sqlite3_syscall_ptr>,
    pub xNextSystemCall: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char) -> *const c_char>,
}

Fields

iVersion: c_intszOsFile: c_intmxPathname: c_intpNext: *mut sqlite3_vfszName: *const c_charpAppData: *mut c_voidxOpen: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char, _: *mut sqlite3_file, _: c_int, _: *mut c_int) -> c_int>xDelete: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char, _: c_int) -> c_int>xAccess: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char, _: c_int, _: *mut c_int) -> c_int>xFullPathname: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char, _: c_int, _: *mut c_char) -> c_int>xDlOpen: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char) -> *mut c_void>xDlError: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: c_int, _: *mut c_char)>xDlSym: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *mut c_void, _: *const c_char) -> Option<unsafe extern "C" fn()>>xDlClose: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *mut c_void)>xRandomness: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: c_int, _: *mut c_char) -> c_int>xSleep: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: c_int) -> c_int>xCurrentTime: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *mut c_double) -> c_int>xGetLastError: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: c_int, _: *mut c_char) -> c_int>xCurrentTimeInt64: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *mut sqlite3_int64) -> c_int>xSetSystemCall: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char, _: sqlite3_syscall_ptr) -> c_int>xGetSystemCall: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char) -> sqlite3_syscall_ptr>xNextSystemCall: Option<unsafe extern "C" fn(_: *mut sqlite3_vfs, _: *const c_char) -> *const c_char>

Trait Implementations

impl Clone for sqlite3_vfs[src]

impl Copy for sqlite3_vfs[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.