pub trait Predicate: Debug {
    fn test(&mut self, ctxt: &mut Context<'_>, value: &IOValue) -> bool;
}

Required Methods

Implementors