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<unsafe extern "C" fn(arg1: *mut sqlite3_mutex)>,
pub xMutexEnter: Option<unsafe extern "C" fn(arg1: *mut sqlite3_mutex)>,
pub xMutexTry: Option<unsafe extern "C" fn(arg1: *mut sqlite3_mutex) -> c_int>,
pub xMutexLeave: Option<unsafe extern "C" fn(arg1: *mut sqlite3_mutex)>,
pub xMutexHeld: Option<unsafe extern "C" fn(arg1: *mut sqlite3_mutex) -> c_int>,
pub xMutexNotheld: Option<unsafe extern "C" fn(arg1: *mut sqlite3_mutex) -> c_int>,
}
Fields
xMutexInit | |
xMutexEnd | |
xMutexAlloc | |
xMutexFree | |
xMutexEnter | |
xMutexTry | |
xMutexLeave | |
xMutexHeld | |
xMutexNotheld | |
Trait Implementations
Derived Implementations