pub struct OpaquePthreadCond { /* private fields */ }
Implementations§
Source§impl OpaquePthreadCond
impl OpaquePthreadCond
Sourcepub fn new_zeroed_on_heap() -> Self
pub fn new_zeroed_on_heap() -> Self
creates zeroed struct where the underlying c struct is on the heap
Sourcepub fn new_zeroed_on_stack() -> Self
pub fn new_zeroed_on_stack() -> Self
creates zeroed struct where the underlying c struct is on the stack (Use with care)
pub fn get_inner(&self) -> *mut _opaque_pthread_cond_t
pub fn get_inner_mut(&self) -> &mut _opaque_pthread_cond_t
pub fn get_inner_ref(&self) -> &_opaque_pthread_cond_t
Trait Implementations§
Source§impl Clone for OpaquePthreadCond
impl Clone for OpaquePthreadCond
Source§fn clone(&self) -> OpaquePthreadCond
fn clone(&self) -> OpaquePthreadCond
Returns a copy 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 OpaquePthreadCond
impl Debug for OpaquePthreadCond
Source§impl Deref for OpaquePthreadCond
impl Deref for OpaquePthreadCond
Source§impl From<&OpaquePthreadCond> for *mut _opaque_pthread_cond_t
impl From<&OpaquePthreadCond> for *mut _opaque_pthread_cond_t
Source§fn from(value: &OpaquePthreadCond) -> Self
fn from(value: &OpaquePthreadCond) -> Self
Converts to this type from the input type.
Source§impl From<*const _opaque_pthread_cond_t> for OpaquePthreadCond
impl From<*const _opaque_pthread_cond_t> for OpaquePthreadCond
Source§fn from(value: *const _opaque_pthread_cond_t) -> Self
fn from(value: *const _opaque_pthread_cond_t) -> Self
Converts to this type from the input type.
Source§impl From<*mut _opaque_pthread_cond_t> for OpaquePthreadCond
impl From<*mut _opaque_pthread_cond_t> for OpaquePthreadCond
Source§fn from(value: *mut _opaque_pthread_cond_t) -> Self
fn from(value: *mut _opaque_pthread_cond_t) -> Self
Converts to this type from the input type.
Source§impl From<OpaquePthreadCond> for *mut _opaque_pthread_cond_t
impl From<OpaquePthreadCond> for *mut _opaque_pthread_cond_t
Source§fn from(value: OpaquePthreadCond) -> Self
fn from(value: OpaquePthreadCond) -> Self
Converts to this type from the input type.
Source§impl From<OpaquePthreadCond> for _opaque_pthread_cond_t
impl From<OpaquePthreadCond> for _opaque_pthread_cond_t
Source§fn from(value: OpaquePthreadCond) -> Self
fn from(value: OpaquePthreadCond) -> Self
Converts to this type from the input type.
Source§impl From<_opaque_pthread_cond_t> for OpaquePthreadCond
impl From<_opaque_pthread_cond_t> for OpaquePthreadCond
Source§fn from(value: _opaque_pthread_cond_t) -> Self
fn from(value: _opaque_pthread_cond_t) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OpaquePthreadCond
impl !RefUnwindSafe for OpaquePthreadCond
impl !Send for OpaquePthreadCond
impl !Sync for OpaquePthreadCond
impl Unpin for OpaquePthreadCond
impl !UnwindSafe for OpaquePthreadCond
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