Struct libsqlite3_sys::Struct_sqlite3_mutex_methods [] [src]

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

impl Clone for Struct_sqlite3_mutex_methods

fn clone(&self) -> Self

1.0.0fn clone_from(&mut self, source: &Self)

impl Default for Struct_sqlite3_mutex_methods

fn default() -> Self

Derived Implementations

impl Copy for Struct_sqlite3_mutex_methods