rkyv/collections/
mod.rs

1//! Archived versions of standard library containers.
2
3pub mod btree_map;
4pub mod btree_set;
5pub mod hash_index;
6pub mod hash_map;
7pub mod hash_set;
8// TODO: move these into a separate crate when indexmap adds rkyv support
9pub mod index_map;
10pub mod index_set;
11pub mod util;
12
13pub use self::btree_map::ArchivedBTreeMap;
14pub use self::hash_index::ArchivedHashIndex;
15pub use self::hash_map::ArchivedHashMap;
16pub use self::hash_set::ArchivedHashSet;
17// TODO: move these into a separate crate when indexmap adds rkyv support
18pub use self::index_map::ArchivedIndexMap;
19pub use self::index_set::ArchivedIndexSet;