Type Alias sqlite3_mem_methods

Source
pub type sqlite3_mem_methods = Struct_sqlite3_mem_methods;

Aliased Type§

struct sqlite3_mem_methods {
    pub xMalloc: Option<extern "C" fn(i32) -> *mut c_void>,
    pub xFree: Option<extern "C" fn(*mut c_void)>,
    pub xRealloc: Option<extern "C" fn(*mut c_void, i32) -> *mut c_void>,
    pub xSize: Option<extern "C" fn(*mut c_void) -> i32>,
    pub xRoundup: Option<extern "C" fn(i32) -> i32>,
    pub xInit: Option<extern "C" fn(*mut c_void) -> i32>,
    pub xShutdown: Option<extern "C" fn(*mut c_void)>,
    pub pAppData: *mut c_void,
}

Fields§

§xMalloc: Option<extern "C" fn(i32) -> *mut c_void>§xFree: Option<extern "C" fn(*mut c_void)>§xRealloc: Option<extern "C" fn(*mut c_void, i32) -> *mut c_void>§xSize: Option<extern "C" fn(*mut c_void) -> i32>§xRoundup: Option<extern "C" fn(i32) -> i32>§xInit: Option<extern "C" fn(*mut c_void) -> i32>§xShutdown: Option<extern "C" fn(*mut c_void)>§pAppData: *mut c_void