#[repr(C)]pub struct pthread_mutex_t___pthread_mutex_s {
pub __lock: i32,
pub __count: u32,
pub __owner: i32,
pub __nusers: u32,
pub __kind: i32,
pub __spins: i32,
pub __list: __pthread_internal_list,
}Fields
__lock: i32__count: u32__owner: i32__nusers: u32__kind: i32__spins: i32__list: __pthread_internal_listTrait Implementations
sourceimpl Clone for pthread_mutex_t___pthread_mutex_s
impl Clone for pthread_mutex_t___pthread_mutex_s
sourcefn clone(&self) -> pthread_mutex_t___pthread_mutex_s
fn clone(&self) -> pthread_mutex_t___pthread_mutex_s
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
impl Copy for pthread_mutex_t___pthread_mutex_s
Auto Trait Implementations
impl RefUnwindSafe for pthread_mutex_t___pthread_mutex_s
impl !Send for pthread_mutex_t___pthread_mutex_s
impl !Sync for pthread_mutex_t___pthread_mutex_s
impl Unpin for pthread_mutex_t___pthread_mutex_s
impl UnwindSafe for pthread_mutex_t___pthread_mutex_s
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more