#[repr(C)]pub struct c__pthread_mutex_s {
pub __lock: c_int,
pub __count: c_uint,
pub __owner: c_int,
pub __nusers: c_uint,
pub __kind: c_int,
pub __spins: c_short,
pub __elision: c_short,
pub __list: c__pthread_list_t,
}Fields§
§__lock: c_int§__count: c_uint§__owner: c_int§__nusers: c_uint§__kind: c_int§__spins: c_short§__elision: c_short§__list: c__pthread_list_tTrait Implementations§
Source§impl Clone for c__pthread_mutex_s
impl Clone for c__pthread_mutex_s
Source§fn clone(&self) -> c__pthread_mutex_s
fn clone(&self) -> c__pthread_mutex_s
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for c__pthread_mutex_s
impl Debug for c__pthread_mutex_s
impl Copy for c__pthread_mutex_s
Auto Trait Implementations§
impl Freeze for c__pthread_mutex_s
impl RefUnwindSafe for c__pthread_mutex_s
impl !Send for c__pthread_mutex_s
impl !Sync for c__pthread_mutex_s
impl Unpin for c__pthread_mutex_s
impl UnwindSafe for c__pthread_mutex_s
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