Expand description
allocator-api2 crate.
Modules§
- alloc
- Memory allocation APIs
- boxed
- The
Box<T>
type for heap allocation. - collections
- vec
- A contiguous growable array type with heap-allocated contents, written
Vec<T>
.
Macros§
- unsize_
box - Allows turning a
Box<T: Sized, A>
into aBox<U: ?Sized, A>
whereT
can be unsizing-coerced into aU
. - vec
- Creates a
Vec
containing the arguments.
Traits§
- Slice
Ext - Slice methods that use
Box
andVec
from this crate.