Struct embassy_sync::blocking_mutex::raw::CriticalSectionRawMutex
source · pub struct CriticalSectionRawMutex { /* private fields */ }
Expand description
A mutex that allows borrowing data across executors and interrupts.
§Safety
This mutex is safe to share between different executors and interrupts.
Implementations§
Trait Implementations§
source§impl RawMutex for CriticalSectionRawMutex
impl RawMutex for CriticalSectionRawMutex
impl Send for CriticalSectionRawMutex
impl Sync for CriticalSectionRawMutex
Auto Trait Implementations§
impl Freeze for CriticalSectionRawMutex
impl RefUnwindSafe for CriticalSectionRawMutex
impl Unpin for CriticalSectionRawMutex
impl UnwindSafe for CriticalSectionRawMutex
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