pub trait Validate {
    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.

Required Methods

Validate the implemented type exhaustively, returning all errors.

Implementations on Foreign Types

Implementors