Module collections

Source

Re-exports§

pub use vecdeque::EstimatedVecDeque;
pub use hashmap::EstimatedHashMap;
pub use btreemap::EstimatedBTreeMap;
pub use vec::EstimatedVec;
pub use hashset::EstimatedHashSet;

Modules§

btreemap
hashmap
hashset
private 🔒
vec
vecdeque

Structs§

MutGuard
A guard holding a mutable reference to a value in a collection. When dropped, the size of the collection will be updated.

Type Aliases§

AtomicMutGuard
Similar to MutGuard, but the size is updated atomically. Useful for creating shared references to the entries in a collection.