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

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§