Skip to main content

Mutex

Type Alias Mutex 

Source
pub type Mutex<T> = Mutex<RawMutex, T>;
Expand description

Mutually exclusive lock. Use this if you need both read and write often.

Aliased Typeยง

pub struct Mutex<T> { /* private fields */ }