Struct mariadb_sys::st_mysql_rwlock
source · #[repr(C)]pub struct st_mysql_rwlock {
pub m_rwlock: pthread_rwlock_t,
pub m_psi: *mut PSI_rwlock,
}
Expand description
An instrumented rwlock structure. @sa mysql_rwlock_t
Fields§
§m_rwlock: pthread_rwlock_t
The real rwlock
m_psi: *mut PSI_rwlock
The instrumentation hook. Note that this hook is not conditionally defined, for binary compatibility of the @c mysql_rwlock_t interface.
Auto Trait Implementations§
impl RefUnwindSafe for st_mysql_rwlock
impl !Send for st_mysql_rwlock
impl !Sync for st_mysql_rwlock
impl Unpin for st_mysql_rwlock
impl UnwindSafe for st_mysql_rwlock
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