pub trait Map {
// Required methods
fn key(&mut self, k: &str) -> Result<&mut dyn Visitor>;
fn finish(&mut self) -> Result<()>;
}Expand description
Trait that can hand out places to write values of a map.
[Refer to the module documentation for examples.][::de]