Struct sqlite3::ffi::Struct_sqlite3_pcache_methods [] [src]

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

Fields