Available on crate features
std or alloc only.Expand description
Non-empty Vec<T>.
Structs§
- Empty
Vec - Similar to
EmptySlice, but holds the empty vector provided. - NonEmpty
Vec - Represents non-empty
Vec<T>values. - PeekMut
- Peeks into the last item of the vector mutably.
Constants§
- EMPTY_
VEC - The error message used when the vector is empty.
Type Aliases§
- Empty
Byte Vec - Represents empty byte vectors,
EmptyVec<u8>. - NonEmpty
Byte Vec - Represents non-empty byte vectors,
NonEmptyVec<u8>.