Structs§
- Deduplicating
Container - A deduplicating
Container
backed by aHashMap
. If two equal items are stored, the second is dropped and a reference to the first is returned. Whilst more resource-intensive thanSimpleContainer
, it can be more memory efficient in scenarios where many items are equal and equivalent since the duplicates will be dropped. - Simple
Container - A basic fast implementation of
Container
andContainerMut
backed byVec
.
Traits§
- Container
- A trait for creating a reference from the specified value.
The resulting reference can live as long as the
Container
does. - Container
Mut - A trait for creating a mutable reference from the specified value.
The resulting reference can live as long as the
Container
does. SeeContainer<T>
for creating immutable references.