pub trait LockStateChecker: Debug {
    // Required method
    fn test(&self, value: LockState) -> bool;
}
Expand description

A lock state checker.

Required Methods§

source

fn test(&self, value: LockState) -> bool

Implementors§