Struct sqlite3::ffi::Struct_sqlite3_io_methods [] [src]

#[repr(C)]
pub struct Struct_sqlite3_io_methods { pub iVersion: c_int, pub xClose: Option<extern "C" fn(_: *mut sqlite3_file) -> c_int>, pub xRead: Option<extern "C" fn(_: *mut sqlite3_file, _: *mut c_void, _: c_int, _: sqlite3_int64) -> c_int>, pub xWrite: Option<extern "C" fn(_: *mut sqlite3_file, _: *const c_void, _: c_int, _: sqlite3_int64) -> c_int>, pub xTruncate: Option<extern "C" fn(_: *mut sqlite3_file, _: sqlite3_int64) -> c_int>, pub xSync: Option<extern "C" fn(_: *mut sqlite3_file, _: c_int) -> c_int>, pub xFileSize: Option<extern "C" fn(_: *mut sqlite3_file, _: *mut sqlite3_int64) -> c_int>, pub xLock: Option<extern "C" fn(_: *mut sqlite3_file, _: c_int) -> c_int>, pub xUnlock: Option<extern "C" fn(_: *mut sqlite3_file, _: c_int) -> c_int>, pub xCheckReservedLock: Option<extern "C" fn(_: *mut sqlite3_file, _: *mut c_int) -> c_int>, pub xFileControl: Option<extern "C" fn(_: *mut sqlite3_file, _: c_int, _: *mut c_void) -> c_int>, pub xSectorSize: Option<extern "C" fn(_: *mut sqlite3_file) -> c_int>, pub xDeviceCharacteristics: Option<extern "C" fn(_: *mut sqlite3_file) -> c_int>, pub xShmMap: Option<extern "C" fn(_: *mut sqlite3_file, _: c_int, _: c_int, _: c_int, _: *mut *mut c_void) -> c_int>, pub xShmLock: Option<extern "C" fn(_: *mut sqlite3_file, _: c_int, _: c_int, _: c_int) -> c_int>, pub xShmBarrier: Option<extern "C" fn(_: *mut sqlite3_file)>, pub xShmUnmap: Option<extern "C" fn(_: *mut sqlite3_file, _: c_int) -> c_int>, pub xFetch: Option<extern "C" fn(_: *mut sqlite3_file, _: sqlite3_int64, _: c_int, _: *mut *mut c_void) -> c_int>, pub xUnfetch: Option<extern "C" fn(_: *mut sqlite3_file, _: sqlite3_int64, _: *mut c_void) -> c_int>, }

Fields