Skip to main content

Map

Type Alias Map 

Source
pub type Map = IndexMap<String, Value>;
Expand description

The object type. indexmap rather than BTreeMap so input key order survives, and rather than Vec<(String, Value)> so merge’s per-key lookup is not quadratic.

Aliased Type§

pub struct Map { /* private fields */ }