store unsize struct on stack with static check
A stack-allocated box that stores trait objects.
Box<T> with small value optimization
Like a Box, but small objects are stored on the stack
`Small Box` optimization: store small item on stack and fallback to heap for large item.
A stack-allocated container similar to Box but without heap allocation
Box that stores small objects inline and bigger objects on the heap using Box, Rc or Arc, with CoW semantic
A box with fixed capacity, backed by a byte array (it can be stored on the stack too). Implements fixed capacity `ArrayBox`.
Smallbox2 is a stack-preferred Box alternative
A wrapper that allows storage of unsized values of up to a fixed size inline (without boxing)
Basically `Box<[T]>` but smaller stack size
`NanoBox` optimization: store small item on stack and fallback to heap for large item.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.