Trait Visitor

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

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

Required Methods§

Source

fn visit_pair(&mut self, key: Key, value: Value<'_>)

Visit a key-value pair.

Implementations on Foreign Types§

Source§

impl<'a, 'b: 'a> Visitor for DebugMap<'a, 'b>

Source§

fn visit_pair(&mut self, key: Key, value: Value<'_>)

Implementors§