pub trait ValidateAuto {
// Provided method
fn validate_self(&self, _ctx: &mut dyn VisitorContext) { ... }
}Expand description
Schema-defined validation for this node only.
Rules:
- Must NOT recurse
- Must NOT aggregate
- Must NOT return errors
- Must report issues via
VisitorContext