Type Alias quartz_nbt::Map

source ·
pub type Map<T> = HashMap<String, T>;
Expand description

The hash map type utilized in this crate. If the feature preserve_order is enabled, then this will use the IndexMap type from the crate https://docs.rs/indexmap/latest/indexmap/. Otherwise, this type defaults to std’s HashMap.

Aliased Type§

struct Map<T> { /* private fields */ }