Available on crate features
std or alloc only.Expand description
Non-empty Box<[T]>.
Structs§
- Empty
Boxed Slice - Similar to
EmptyVec<T>, but contains the empty boxed slice provided.
Constants§
- EMPTY_
BOXED - The error message used when the boxed slice is empty.
Type Aliases§
- Empty
Boxed Bytes - Represents empty boxed bytes,
EmptyBoxedSlice<u8>. - NonEmpty
Boxed Bytes - Represents non-empty boxed bytes,
NonEmptyBoxedSlice<u8>. - NonEmpty
Boxed Slice - Represents non-empty boxed slices,
Box<NonEmptySlice<T>>. - NonEmpty
Maybe Uninit Boxed Slice - Represents non-empty boxed slices of possibly uninitialized values,
NonEmptyBoxedSlice<MaybeUninit<T>>.