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

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

Provided Methods§

Implementors§