Trait form_checker::Checkable [] [src]

pub trait Checkable {
    fn check(
        &self,
        params: &HashMap<String, Vec<String>>
    ) -> Result<Option<Vec<FieldValue>>, Message>; fn get_name(&self) -> String; }

Represents a type to fed to the Validator.

Required Methods

Implementors