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
pub trait Validatable {
// Provided method
fn validate(&self) -> Result<(), ValidationError> { ... }
}Trait for data types which need validation after being loaded from external sources