pub trait Check: Visit + Default {
    // Required method
    fn should_handle(&self) -> bool;
}

Required Methods§

Implementors§