Struct mariadb_sys::st_mysql_mutex
source · #[repr(C)]pub struct st_mysql_mutex {
pub m_mutex: pthread_mutex_t,
pub m_psi: *mut PSI_mutex,
}
Expand description
An instrumented mutex structure. @sa mysql_mutex_t
Fields§
§m_mutex: pthread_mutex_t
§m_psi: *mut PSI_mutex
The instrumentation hook. Note that this hook is not conditionally defined, for binary compatibility of the @c mysql_mutex_t interface.
Auto Trait Implementations§
impl RefUnwindSafe for st_mysql_mutex
impl !Send for st_mysql_mutex
impl !Sync for st_mysql_mutex
impl Unpin for st_mysql_mutex
impl UnwindSafe for st_mysql_mutex
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more