[]Struct c3p0_pool_sqlite::rusqlite::ffi::sqlite3_vfs

#[repr(C)]
pub struct sqlite3_vfs {
    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: i32szOsFile: i32mxPathname: i32pNext: *mut sqlite3_vfszName: *const i8pAppData: *mut c_voidxOpen: 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

impl Debug for sqlite3_vfs

impl Clone for sqlite3_vfs

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for sqlite3_vfs

Auto Trait Implementations

Blanket Implementations

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.

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

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

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