Type Alias kernel::sync::lock::mutex::MutexGuard

source ·
pub type MutexGuard<'a, T> = Guard<'a, T, MutexBackend>;
Expand description

A Guard acquired from locking a Mutex.

This is simply a type alias for a Guard returned from locking a Mutex. It will unlock the Mutex upon being dropped.

Aliased Type§

struct MutexGuard<'a, T> { /* private fields */ }