#[repr(C)]pub struct Struct_sqlite3_mutex_methods {
pub xMutexInit: Option<extern "C" fn() -> c_int>,
pub xMutexEnd: Option<extern "C" fn() -> c_int>,
pub xMutexAlloc: Option<extern "C" fn(arg1: c_int) -> *mut sqlite3_mutex>,
pub xMutexFree: Option<extern "C" fn(arg1: *mut sqlite3_mutex)>,
pub xMutexEnter: Option<extern "C" fn(arg1: *mut sqlite3_mutex)>,
pub xMutexTry: Option<extern "C" fn(arg1: *mut sqlite3_mutex) -> c_int>,
pub xMutexLeave: Option<extern "C" fn(arg1: *mut sqlite3_mutex)>,
pub xMutexHeld: Option<extern "C" fn(arg1: *mut sqlite3_mutex) -> c_int>,
pub xMutexNotheld: Option<extern "C" fn(arg1: *mut sqlite3_mutex) -> c_int>,
}
Fields§
§xMutexInit: Option<extern "C" fn() -> c_int>
§xMutexEnd: Option<extern "C" fn() -> c_int>
§xMutexAlloc: Option<extern "C" fn(arg1: c_int) -> *mut sqlite3_mutex>
§xMutexFree: Option<extern "C" fn(arg1: *mut sqlite3_mutex)>
§xMutexEnter: Option<extern "C" fn(arg1: *mut sqlite3_mutex)>
§xMutexTry: Option<extern "C" fn(arg1: *mut sqlite3_mutex) -> c_int>
§xMutexLeave: Option<extern "C" fn(arg1: *mut sqlite3_mutex)>
§xMutexHeld: Option<extern "C" fn(arg1: *mut sqlite3_mutex) -> c_int>
§xMutexNotheld: Option<extern "C" fn(arg1: *mut sqlite3_mutex) -> c_int>
Auto Trait Implementations§
impl Freeze for Struct_sqlite3_mutex_methods
impl RefUnwindSafe for Struct_sqlite3_mutex_methods
impl Send for Struct_sqlite3_mutex_methods
impl Sync for Struct_sqlite3_mutex_methods
impl Unpin for Struct_sqlite3_mutex_methods
impl UnwindSafe for Struct_sqlite3_mutex_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