[][src]Struct spatialite_sys::sqlite3_pcache_methods2

#[repr(C)]
pub struct sqlite3_pcache_methods2 { pub iVersion: c_int, pub pArg: *mut c_void, pub xInit: Option<unsafe extern "C" fn(arg1: *mut c_void) -> c_int>, pub xShutdown: Option<unsafe extern "C" fn(arg1: *mut c_void)>, pub xCreate: Option<unsafe extern "C" fn(szPage: c_int, szExtra: c_int, bPurgeable: c_int) -> *mut sqlite3_pcache>, pub xCachesize: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache, nCachesize: c_int)>, pub xPagecount: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache) -> c_int>, pub xFetch: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache, key: c_uint, createFlag: c_int) -> *mut sqlite3_pcache_page>, pub xUnpin: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache, arg2: *mut sqlite3_pcache_page, discard: c_int)>, pub xRekey: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache, arg2: *mut sqlite3_pcache_page, oldKey: c_uint, newKey: c_uint)>, pub xTruncate: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache, iLimit: c_uint)>, pub xDestroy: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache)>, pub xShrink: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache)>, }

Fields

iVersion: c_intpArg: *mut c_voidxInit: Option<unsafe extern "C" fn(arg1: *mut c_void) -> c_int>xShutdown: Option<unsafe extern "C" fn(arg1: *mut c_void)>xCreate: Option<unsafe extern "C" fn(szPage: c_int, szExtra: c_int, bPurgeable: c_int) -> *mut sqlite3_pcache>xCachesize: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache, nCachesize: c_int)>xPagecount: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache) -> c_int>xFetch: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache, key: c_uint, createFlag: c_int) -> *mut sqlite3_pcache_page>xUnpin: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache, arg2: *mut sqlite3_pcache_page, discard: c_int)>xRekey: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache, arg2: *mut sqlite3_pcache_page, oldKey: c_uint, newKey: c_uint)>xTruncate: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache, iLimit: c_uint)>xDestroy: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache)>xShrink: Option<unsafe extern "C" fn(arg1: *mut sqlite3_pcache)>

Trait Implementations

impl Clone for sqlite3_pcache_methods2[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for sqlite3_pcache_methods2[src]

impl Debug for sqlite3_pcache_methods2[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]