Struct libsqlite3_sys::sqlite3_file_sqlite3_io_methods [] [src]

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

Fields

Trait Implementations

impl Debug for sqlite3_file_sqlite3_io_methods
[src]

Formats the value using the given formatter.

impl Copy for sqlite3_file_sqlite3_io_methods
[src]

impl Clone for sqlite3_file_sqlite3_io_methods
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more