Module boxed

Module boxed 

Source
Available on crate features std or alloc only.
Expand description

Non-empty Box<[T]>.

Structs§

EmptyBoxedSlice
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§

EmptyBoxedBytes
Represents empty boxed bytes, EmptyBoxedSlice<u8>.
NonEmptyBoxedBytes
Represents non-empty boxed bytes, NonEmptyBoxedSlice<u8>.
NonEmptyBoxedSlice
Represents non-empty boxed slices, Box<NonEmptySlice<T>>.
NonEmptyMaybeUninitBoxedSlice
Represents non-empty boxed slices of possibly uninitialized values, NonEmptyBoxedSlice<MaybeUninit<T>>.