Struct libsqlite3_sys::sqlite3_io_methods [] [src]

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

Fields

Trait Implementations

impl Debug for sqlite3_io_methods
[src]

Formats the value using the given formatter.

impl Clone for sqlite3_io_methods
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for sqlite3_io_methods
[src]

impl Default for sqlite3_io_methods
[src]

Returns the "default value" for a type. Read more