pub trait Test: Sync + Send {
// Required method
fn test(&self, value: Option<&Value>, args: &[Value]) -> Result<bool, Error>;
}Expand description
The tester function type definition
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".