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