Struct libsqlite3_sys::sqlite3_pcache_methods2 [] [src]

#[repr(C)]
pub struct sqlite3_pcache_methods2 { pub iVersion: c_int, 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<extern fn(_: c_int, _: 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 sqlite3_pcache_page>, pub xUnpin: Option<unsafe extern fn(_: *mut sqlite3_pcache, _: *mut sqlite3_pcache_page, _: c_int)>, pub xRekey: Option<unsafe extern fn(_: *mut sqlite3_pcache, _: *mut sqlite3_pcache_page, _: c_uint, _: c_uint)>, pub xTruncate: Option<unsafe extern fn(_: *mut sqlite3_pcache, _: c_uint)>, pub xDestroy: Option<unsafe extern fn(_: *mut sqlite3_pcache)>, pub xShrink: Option<unsafe extern fn(_: *mut sqlite3_pcache)>, }

Fields

Trait Implementations

impl Debug for sqlite3_pcache_methods2
[src]

Formats the value using the given formatter.

impl Clone for sqlite3_pcache_methods2
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for sqlite3_pcache_methods2
[src]

impl Default for sqlite3_pcache_methods2
[src]

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