Trait Check
pub trait Check: Visit + Default {
// Required method
fn should_handle(&self) -> bool;
}
Required Methods§
fn should_handle(&self) -> bool
Object Safety§
This trait is not object safe.
pub trait Check: Visit + Default {
// Required method
fn should_handle(&self) -> bool;
}