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

The trait that validator_derive implements

Required methods

Implementors