[][src]Struct libsqlite3_sys::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(arg1: *mut sqlite3_vfs, zName: *const c_char, arg2: *mut sqlite3_file, flags: c_int, pOutFlags: *mut c_int) -> c_int>, pub xDelete: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, zName: *const c_char, syncDir: c_int) -> c_int>, pub xAccess: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, zName: *const c_char, flags: c_int, pResOut: *mut c_int) -> c_int>, pub xFullPathname: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, zName: *const c_char, nOut: c_int, zOut: *mut c_char) -> c_int>, pub xDlOpen: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, zFilename: *const c_char) -> *mut c_void>, pub xDlError: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, nByte: c_int, zErrMsg: *mut c_char)>, pub xDlSym: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, arg2: *mut c_void, zSymbol: *const c_char) -> Option<unsafe extern "C" fn()>>, pub xDlClose: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, arg2: *mut c_void)>, pub xRandomness: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, nByte: c_int, zOut: *mut c_char) -> c_int>, pub xSleep: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, microseconds: c_int) -> c_int>, pub xCurrentTime: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, arg2: *mut f64) -> c_int>, pub xGetLastError: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, arg2: c_int, arg3: *mut c_char) -> c_int>, pub xCurrentTimeInt64: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, arg2: *mut sqlite3_int64) -> c_int>, pub xSetSystemCall: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, zName: *const c_char, arg2: sqlite3_syscall_ptr) -> c_int>, pub xGetSystemCall: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, zName: *const c_char) -> Option<unsafe extern "C" fn()>>, pub xNextSystemCall: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vfs, zName: *const c_char) -> *const c_char>, }

Fields

Trait Implementations

impl Clone for sqlite3_vfs
[src]

Performs copy-assignment from source. Read more

impl Copy for sqlite3_vfs
[src]

impl Debug for sqlite3_vfs
[src]

Auto Trait Implementations

impl !Send for sqlite3_vfs

impl !Sync for sqlite3_vfs

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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