Struct heed_types::UnalignedType
source · pub struct UnalignedType<T>(_);Expand description
Describes a slice that is totally borrowed and doesn’t depends on any memory alignment.
If you need to store a slice that does depend on memory alignment
and that can be big it is recommended to use the CowType.
To store slices, you must look at the CowSlice,
OwnedSlice or UnalignedSlice types.