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

A trait for something that can be tested for modifier presence.

Required Methods§

source

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

Implementors§