Type Alias MutexGuard

Source
pub type MutexGuard<'a, T> = MutexGuard<'a, Mutex<()>, T>;
Available on crate features lock_api and mutex only.
Expand description

A guard that provides mutable data access (compatible with lock_api).

Aliased Typeยง

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