pub trait CustomValidator<T: InputType> { fn check(&self, value: &T) -> Result<(), String>; }
Represents a custom input value validator.
Check the value is valid.