Type Alias 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 */ }