Struct libsqlite3_sys::sqlite3_pcache_methods [] [src]

#[repr(C)]
pub struct sqlite3_pcache_methods { pub pArg: *mut c_void, pub xInit: Option<unsafe extern fn(_: *mut c_void) -> c_int>, pub xShutdown: Option<unsafe extern fn(_: *mut c_void)>, pub xCreate: Option<unsafe extern fn(_: c_int, _: c_int) -> *mut sqlite3_pcache>, pub xCachesize: Option<unsafe extern fn(_: *mut sqlite3_pcache, _: c_int)>, pub xPagecount: Option<unsafe extern fn(_: *mut sqlite3_pcache) -> c_int>, pub xFetch: Option<unsafe extern fn(_: *mut sqlite3_pcache, _: c_uint, _: c_int) -> *mut c_void>, pub xUnpin: Option<unsafe extern fn(_: *mut sqlite3_pcache, _: *mut c_void, _: c_int)>, pub xRekey: Option<unsafe extern fn(_: *mut sqlite3_pcache, _: *mut c_void, _: c_uint, _: c_uint)>, pub xTruncate: Option<unsafe extern fn(_: *mut sqlite3_pcache, _: c_uint)>, pub xDestroy: Option<unsafe extern fn(_: *mut sqlite3_pcache)>, }

Fields

Trait Implementations

impl Debug for sqlite3_pcache_methods
[src]

Formats the value using the given formatter.

impl Copy for sqlite3_pcache_methods
[src]

impl Clone for sqlite3_pcache_methods
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more