pub type UFixedVec<T, B = Vec<usize>> = FixedVec<T, usize, LE, B>;
A FixedVec for unsigned integers with a usize word and Little-Endian layout.
FixedVec
usize
This is a convenient alias for a common configuration. The element type T can be any unsigned integer that implements Storable, such as u8, u16, u32, u64, u128, or usize.
T
Storable
u8
u16
u32
u64
u128
pub struct UFixedVec<T, B = Vec<usize>> { /* private fields */ }