pub struct CondVarProp {
pub name: String<{ _ }>,
pub creator: OsalId,
}Expand description
Properties of a condition variable, returned by CondVar::get_info.
Fields§
§name: String<{ _ }>The registered name of the condition variable.
creator: OsalIdThe OSAL ID of the task that created the condition variable.
Trait Implementations§
Source§impl Clone for CondVarProp
impl Clone for CondVarProp
Source§fn clone(&self) -> CondVarProp
fn clone(&self) -> CondVarProp
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 moreAuto Trait Implementations§
impl Freeze for CondVarProp
impl RefUnwindSafe for CondVarProp
impl Send for CondVarProp
impl Sync for CondVarProp
impl Unpin for CondVarProp
impl UnsafeUnpin for CondVarProp
impl UnwindSafe for CondVarProp
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