Trait deltae::Validate[][src]

pub trait Validate where
    Self: Sized
{ fn validate(self) -> Result<Self, ValueError>; }
Expand description

Trait to validate whether a type has appropriate values

Required methods

Return Err() if the values are invalid

Implementors