[][src]Type Definition parking_lot::ReentrantMutexGuard

type ReentrantMutexGuard<'a, T> = ReentrantMutexGuard<'a, RawMutex, RawThreadId, T>;

An RAII implementation of a "scoped lock" of a reentrant mutex. When this structure is dropped (falls out of scope), the lock will be unlocked.

The data protected by the mutex can be accessed through this guard via its Deref implementation.