logo
pub trait Validator<T>: Display {
    fn check(&self, value: &T) -> bool;
}
Expand description

Represents a validator for validate the input value.

Required Methods

Check the value is valid.

Implementors