Expand description
Mutex primitives.
This module provides a trait for mutexes that can be used in different contexts.
Structs§
- Critical
Section RawMutex  - A mutex that allows borrowing data across executors and interrupts.
 - Noop
RawMutex  - A mutex that allows borrowing data in the context of a single executor.
 - Thread
Mode RawMutex  - A “mutex” that only allows borrowing from thread mode.
 
Traits§
- RawMutex
 - Raw mutex trait.