pub trait Validator<T>: Display { // Required method fn check(&self, value: &T) -> bool; }
Represents a validator for validate the input value.
Check the value is valid.