pub struct Cond { /* private fields */ }Expand description
An opaque condition variable handle.
Created with cond_create and destroyed with cond_destroy; waited on
with cond_wait. Always handled as *mut Cond.
ErlNifCond — NIF 1.0 — OTP R13B04
Auto Trait Implementations§
impl !Send for Cond
impl !Sync for Cond
impl !Unpin for Cond
impl Freeze for Cond
impl RefUnwindSafe for Cond
impl UnsafeUnpin for Cond
impl UnwindSafe for 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