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