hopr_primitive_types

Module bounded

Source
Expand description

Contains various size-bounded types

Structs§

BoundedSize
Unsigned integer (usize) that has an explicit upper bound. Trying to convert an integer that’s above this bound will fail.
BoundedVec
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.