pub trait Validate {
// Required method
fn validate(&self) -> Result<()>;
}
Expand description
The core Validatron trait, types that implement this trait can be exhaustively validated.
Implementors should recursively validate internal structures.