Module boxed

Source

Structs§

Box
A pointer type that uniquely owns a heap allocation of type T.
ThinBoxExperimental
ThinBox.

Functions§

box_newExperimental
Constructs a Box<T> by calling the exchange_malloc lang item and moving the argument into the newly allocated memory. This is an intrinsic to avoid unnecessary copies.