pub trait Validate {
    fn validate(&self) -> Result<(), Errors>;
}

Required Methods

Implementors