pub trait LockLevel {
type Method;
}Expand description
Marker for a type that indicates a level in the locking hierarchy.
Required Associated Types§
Sourcetype Method
type Method
How the lock can be acquired.
This should be either MutualExclusion or ReadWrite.