#[repr(C)]pub struct subscription_condvar {
pub condvar: *mut condvar,
pub lock: *mut lock,
pub condvar_scope: scope,
pub lock_scope: scope,
}Fields§
§condvar: *mut condvarThe condition variable on which to wait to be woken up.
lock: *mut lockThe lock that will be released while waiting.
The lock will be reacquired for writing when the condition variable triggers.
condvar_scope: scopeWhether the condition variable is stored in private or shared memory.
lock_scope: scopeWhether the lock is stored in private or shared memory.
Trait Implementations§
Source§impl Clone for subscription_condvar
impl Clone for subscription_condvar
Source§fn clone(&self) -> subscription_condvar
fn clone(&self) -> subscription_condvar
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 moreimpl Copy for subscription_condvar
Auto Trait Implementations§
impl Freeze for subscription_condvar
impl RefUnwindSafe for subscription_condvar
impl !Send for subscription_condvar
impl !Sync for subscription_condvar
impl Unpin for subscription_condvar
impl UnwindSafe for subscription_condvar
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