pub type ReentrantMutexGuard<'a, T> = ReentrantMutexGuard<'a, RawMutex, RawThreadId, T>;
Expand description
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.
Aliased Type§
struct ReentrantMutexGuard<'a, T> { /* private fields */ }
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 8 bytes