Expand description
Storage
trait defining how data is stored in a container.
Enums§
- Owned
Storage - Implementation of
Storage
that stores the data in an array[T; N]
whose size is known at compile time. - View
Storage - Implementation of
Storage
that stores the data in an unsized[T]
.
Traits§
- Storage
- Trait defining how data for a container is stored.