Struct heed_types::OwnedSlice
source · pub struct OwnedSlice<T>(_);Expand description
Describes a Vec of types that are totally owned (doesn’t
hold any reference to the original slice).
If you need to store a type that doesn’t depends on any
memory alignment and that can be big it is recommended
to use the UnalignedSlice.
The CowType is recommended for borrowed types (types that holds
references to the original slice).