Type Alias RawMutexGuard

Source
pub type RawMutexGuard<'a, T, ThreadEvent> = GenericMutexGuard<'a, WordLock<ThreadEvent>, T>;
Expand description

An RAII guard returned by the lock and try_lock methods of RawMutex. When this structure is dropped (falls out of scope), the lock will be unlocked.

Aliased Typeยง

pub struct RawMutexGuard<'a, T, ThreadEvent> { /* private fields */ }