Expand description
Contains various size-bounded types
Structs§
- Bounded
Size - Unsigned integer (
usize
) that has an explicit upper bound. Trying to convert an integer that’s above this bound will fail. - Bounded
Vec - Wrapper for
Vec
that has an explicit upper bound on the number of elements. The Structure remains heap-allocated to avoid blowing up the size of types where it is used.