pub type Validator = Box<dyn Fn(&str) -> Option<String> + 'static>;
A validator: returns Some(message) when the value is invalid.
Some(message)
pub struct Validator(/* private fields */);