Struct windows_sys::Win32::System::SqlLite::sqlite3_mutex_methods
[−]#[repr(C)]pub struct sqlite3_mutex_methods {
pub xMutexInit: isize,
pub xMutexEnd: isize,
pub xMutexAlloc: isize,
pub xMutexFree: isize,
pub xMutexEnter: isize,
pub xMutexTry: isize,
pub xMutexLeave: isize,
pub xMutexHeld: isize,
pub xMutexNotheld: isize,
}
Expand description
Required features: ‘Win32_System_SqlLite’
Fields
xMutexInit: isize
xMutexEnd: isize
xMutexAlloc: isize
xMutexFree: isize
xMutexEnter: isize
xMutexTry: isize
xMutexLeave: isize
xMutexHeld: isize
xMutexNotheld: isize
Trait Implementations
impl Clone for sqlite3_mutex_methods
impl Clone for sqlite3_mutex_methods
impl Copy for sqlite3_mutex_methods
Auto Trait Implementations
impl RefUnwindSafe for sqlite3_mutex_methods
impl Send for sqlite3_mutex_methods
impl Sync for sqlite3_mutex_methods
impl Unpin for sqlite3_mutex_methods
impl UnwindSafe for sqlite3_mutex_methods
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more