Struct bare_metal::Mutex
[−]
[src]
pub struct Mutex<T> { /* fields omitted */ }
A "mutex" based on critical sections
Methods
impl<T> Mutex<T>
[src]
impl<T> Mutex<T>
[src]
pub fn borrow<'cs>(&self, _cs: &'cs CriticalSection) -> &'cs T
[src]
Borrows the data for the duration of the critical section
Trait Implementations
impl<T> Sync for Mutex<T> where
T: Send,
[src]
T: Send,