pub trait Visitor {
    fn visit_pair(&mut self, key: Key, value: Value<'_>);
}
Expand description

A visitor for the key-value pairs in a Schema.

Required Methods

Visit a key-value pair.

Implementations on Foreign Types

Implementors