pub struct MutexProp {
pub name: String<{ _ }>,
pub creator: OsalId,
}Expand description
Properties of a mutex, returned by Mutex::get_info.
Fields§
§name: String<{ _ }>The registered name of the mutex.
creator: OsalIdThe OSAL ID of the task that created the mutex.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MutexProp
impl RefUnwindSafe for MutexProp
impl Send for MutexProp
impl Sync for MutexProp
impl Unpin for MutexProp
impl UnsafeUnpin for MutexProp
impl UnwindSafe for MutexProp
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