Expand description
Implementation of Vec
.
Structs§
- Drain
All - An iterator that owns all items in a vector, but does not own its allocation.
- Into
Iter - An
Iterator
implementation forVec
that moves elements out of a vector. - Push
Error - Error type for
Vec::push_within_capacity
. - Remove
Error - Error type for
Vec::remove
. - Vec
- The kernel’s
Vec
type.
Enums§
- Insert
Error - Error type for
Vec::insert_within_capacity
.