pub type Map<K, V> = IndexMap<K, V>;Expand description
An order-preserving map type used for TOON objects.
Uses IndexMap to preserve the insertion order of keys, which is important
for maintaining consistent serialization output.
Aliased Typeยง
pub struct Map<K, V> { /* private fields */ }