UFixedVec

Type Alias UFixedVec 

Source
pub type UFixedVec<T, B = Vec<usize>> = FixedVec<T, usize, LE, B>;
Expand description

A FixedVec for unsigned integers with a usize word and Little-Endian layout.

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.

Aliased Typeยง

pub struct UFixedVec<T, B = Vec<usize>> { /* private fields */ }