Type Alias Map
pub type Map = BTreeMap<SmartString<LazyCompact>, Dynamic>;
Expand description
A dictionary of Dynamic
values with string keys.
Not available under no_object
.
SmartString
is used as the key type because most
property names are ASCII and short, fewer than 23 characters, so they can be stored inline.
Aliased Typeยง
struct Map { /* private fields */ }