pub trait Test: Sync + Send {
    fn test(&self, value: Option<&Value>, args: &[Value]) -> Result<bool, Error>;
}
Expand description

The tester function type definition

Required methods

The tester function type definition

Implementors