barter_integration/collection/mod.rs
1/// `NoneOneOrMany` enum.
2pub mod none_one_or_many;
3
4/// `OneOrMany` enum.
5pub mod one_or_many;
6
7/// `Snapshot<T>` new type wrapper.
8pub mod snapshot;
9
10pub type FnvIndexMap<K, V> = indexmap::IndexMap<K, V, fnv::FnvBuildHasher>;
11pub type FnvIndexSet<T> = indexmap::IndexSet<T, fnv::FnvBuildHasher>;