Struct sqlite3::ffi::Struct_sqlite3_mem_methods [] [src]

#[repr(C)]
pub struct Struct_sqlite3_mem_methods { pub xMalloc: Option<extern "C" fn(_: c_int) -> *mut c_void>, pub xFree: Option<extern "C" fn(_: *mut c_void)>, pub xRealloc: Option<extern "C" fn(_: *mut c_void, _: c_int) -> *mut c_void>, pub xSize: Option<extern "C" fn(_: *mut c_void) -> c_int>, pub xRoundup: Option<extern "C" fn(_: c_int) -> c_int>, pub xInit: Option<extern "C" fn(_: *mut c_void) -> c_int>, pub xShutdown: Option<extern "C" fn(_: *mut c_void)>, pub pAppData: *mut c_void, }

Fields