pub type Mutex<T> = BaseSpinLock<NoOp, T>;Available on non-crate feature
multitask only.Expand description
A raw spin lock that does nothing while trying to lock.
It must be used in the preemption-disabled and local IRQ-disabled context, or never be used in interrupt handlers.
Aliased Typeยง
pub struct Mutex<T> { /* private fields */ }