pub trait Checkable {
// Required methods
fn check(
&self,
params: &HashMap<String, Vec<String>>,
) -> Result<Option<Vec<FieldValue>>, Message>;
fn get_name(&self) -> String;
}Expand description
Represents a type to fed to the Validator.