Expand description
Store arbitrary data in the size of a usize
, only boxing it if necessary.
Structs§
- Maybe
Box - Hold a value of type
T
in the space for ausize
, only boxing it if necessary. This can be a useful optimization when dealing with C APIs that allow you to pass around some arbitraryvoid *
-sized piece of data.
Enums§
- Unpacked
- An unpacked
MaybeBox<T>
. Produced byMaybeBox::unpack
.