LockLevel

Trait LockLevel 

Source
pub trait LockLevel {
    type Method;
}
Expand description

Marker for a type that indicates a level in the locking hierarchy.

Required Associated Types§

Source

type Method

How the lock can be acquired.

This should be either MutualExclusion or ReadWrite.

Implementors§