Struct libsqlite3_sys::Struct_sqlite3_mutex_methods
[−]
[src]
pub struct Struct_sqlite3_mutex_methods {
pub xMutexInit: Option<extern fn() -> c_int>,
pub xMutexEnd: Option<extern fn() -> c_int>,
pub xMutexAlloc: Option<extern fn(arg1: c_int) -> *mut sqlite3_mutex>,
pub xMutexFree: Option<unsafe extern fn(arg1: *mut sqlite3_mutex)>,
pub xMutexEnter: Option<unsafe extern fn(arg1: *mut sqlite3_mutex)>,
pub xMutexTry: Option<unsafe extern fn(arg1: *mut sqlite3_mutex) -> c_int>,
pub xMutexLeave: Option<unsafe extern fn(arg1: *mut sqlite3_mutex)>,
pub xMutexHeld: Option<unsafe extern fn(arg1: *mut sqlite3_mutex) -> c_int>,
pub xMutexNotheld: Option<unsafe extern fn(arg1: *mut sqlite3_mutex) -> c_int>,
}Fields
xMutexInit | |
xMutexEnd | |
xMutexAlloc | |
xMutexFree | |
xMutexEnter | |
xMutexTry | |
xMutexLeave | |
xMutexHeld | |
xMutexNotheld |
Trait Implementations
impl Clone for Struct_sqlite3_mutex_methods[src]
fn clone(&self) -> Self
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more