Type Alias ReentrantMutex

pub type ReentrantMutex<T> = ReentrantMutex<RawMutex, RawThreadId, T>;

A mutex which can be recursively locked by a single thread.

This type is identical to Mutex except for the following points:

See Mutex for more details about the underlying mutex primitive.