#[repr(C)]pub struct Struct_sqlite3_mem_methods {
pub xMalloc: Option<extern "C" fn(arg1: c_int) -> *mut c_void>,
pub xFree: Option<extern "C" fn(arg1: *mut c_void)>,
pub xRealloc: Option<extern "C" fn(arg1: *mut c_void, arg2: c_int) -> *mut c_void>,
pub xSize: Option<extern "C" fn(arg1: *mut c_void) -> c_int>,
pub xRoundup: Option<extern "C" fn(arg1: c_int) -> c_int>,
pub xInit: Option<extern "C" fn(arg1: *mut c_void) -> c_int>,
pub xShutdown: Option<extern "C" fn(arg1: *mut c_void)>,
pub pAppData: *mut c_void,
}Fields§
§xMalloc: Option<extern "C" fn(arg1: c_int) -> *mut c_void>§xFree: Option<extern "C" fn(arg1: *mut c_void)>§xRealloc: Option<extern "C" fn(arg1: *mut c_void, arg2: c_int) -> *mut c_void>§xSize: Option<extern "C" fn(arg1: *mut c_void) -> c_int>§xRoundup: Option<extern "C" fn(arg1: c_int) -> c_int>§xInit: Option<extern "C" fn(arg1: *mut c_void) -> c_int>§xShutdown: Option<extern "C" fn(arg1: *mut c_void)>§pAppData: *mut c_voidAuto Trait Implementations§
impl Freeze for Struct_sqlite3_mem_methods
impl RefUnwindSafe for Struct_sqlite3_mem_methods
impl !Send for Struct_sqlite3_mem_methods
impl !Sync for Struct_sqlite3_mem_methods
impl Unpin for Struct_sqlite3_mem_methods
impl UnwindSafe for Struct_sqlite3_mem_methods
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more