pub struct Mutex<T> { /* private fields */ }
Expand description
A “mutex” based on critical sections
§Safety
This Mutex is only safe on single-core systems.
On multi-core systems, a CriticalSection
is not sufficient to ensure exclusive access.
Implementations§
§impl<T> Mutex<T>
impl<T> Mutex<T>
pub fn borrow<'cs>(&'cs self, _cs: &'cs CriticalSection) -> &'cs T
pub fn borrow<'cs>(&'cs self, _cs: &'cs CriticalSection) -> &'cs T
Borrows the data for the duration of the critical section
Trait Implementations§
Auto Trait Implementations§
impl<T> !Freeze for Mutex<T>
impl<T> !RefUnwindSafe for Mutex<T>
impl<T> Send for Mutex<T>where
T: Send,
impl<T> Unpin for Mutex<T>where
T: Unpin,
impl<T> UnwindSafe for Mutex<T>where
T: UnwindSafe,
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