pub trait Schema {
// Required method
fn visit(&self, visitor: &mut dyn Visitor);
}Expand description
A schema of key-value pairs.
The schema may be a single pair, a set of pairs, or a filter over a set of
pairs. Use the Visitor trait to inspect the
structured data in a schema.