pub trait ValidateNode {
// Provided method
fn validate(&self) -> Result<(), ErrorTree> { ... }
}Expand description
ValidateNode
Trait implemented by schema nodes that can validate their own local invariants against the process-global schema graph.