Trait Validate

Source
pub trait Validate {
    // Required method
    fn validate(&self) -> Result<(), ValidationError>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl<T: Validate> Validate for Option<T>

Implementors§