Expand description
A low level builder type for creating fixed size arrays. See ArrayBuilder
for details.
Structs§
- Error type returned from
ArrayBuilder::try_push
, indicating that the builder was already full. Includes the value that couldn’t be pushed to the array.
Enums§
- Result type returned from
ArrayBuilder::push
, indicating whether the array is full after the push.ArrayBuilder::push
panics on overflow, so this only indicates if there is room to push additional elements.