Type Alias sqlite3_mutex_methods

Source
pub type sqlite3_mutex_methods = Struct_sqlite3_mutex_methods;

Aliased Type§

struct sqlite3_mutex_methods {
    pub xMutexInit: Option<extern "C" fn() -> i32>,
    pub xMutexEnd: Option<extern "C" fn() -> i32>,
    pub xMutexAlloc: Option<extern "C" fn(i32) -> *mut Struct_sqlite3_mutex>,
    pub xMutexFree: Option<extern "C" fn(*mut Struct_sqlite3_mutex)>,
    pub xMutexEnter: Option<extern "C" fn(*mut Struct_sqlite3_mutex)>,
    pub xMutexTry: Option<extern "C" fn(*mut Struct_sqlite3_mutex) -> i32>,
    pub xMutexLeave: Option<extern "C" fn(*mut Struct_sqlite3_mutex)>,
    pub xMutexHeld: Option<extern "C" fn(*mut Struct_sqlite3_mutex) -> i32>,
    pub xMutexNotheld: Option<extern "C" fn(*mut Struct_sqlite3_mutex) -> i32>,
}

Fields§

§xMutexInit: Option<extern "C" fn() -> i32>§xMutexEnd: Option<extern "C" fn() -> i32>§xMutexAlloc: Option<extern "C" fn(i32) -> *mut Struct_sqlite3_mutex>§xMutexFree: Option<extern "C" fn(*mut Struct_sqlite3_mutex)>§xMutexEnter: Option<extern "C" fn(*mut Struct_sqlite3_mutex)>§xMutexTry: Option<extern "C" fn(*mut Struct_sqlite3_mutex) -> i32>§xMutexLeave: Option<extern "C" fn(*mut Struct_sqlite3_mutex)>§xMutexHeld: Option<extern "C" fn(*mut Struct_sqlite3_mutex) -> i32>§xMutexNotheld: Option<extern "C" fn(*mut Struct_sqlite3_mutex) -> i32>