pub type MutexGuard<'a, T> = Guard<'a, T, MutexBackend>;
A Guard acquired from locking a Mutex.
Guard
Mutex
This is simply a type alias for a Guard returned from locking a Mutex. It will unlock the Mutex upon being dropped.
struct MutexGuard<'a, T> { /* private fields */ }