pub trait Validatable {
    fn validate(&self) -> Result<(), ValidationError> { ... }
}
Expand description

Trait for data types which need validation after being loaded from external sources

Provided methods

Implementors