Type Definition bounded_vec::NonEmptyVec
source · pub type NonEmptyVec<T> = BoundedVec<T, 1, { usize::MAX }>;
Expand description
A non-empty Vec with no effective upper-bound on its length
pub type NonEmptyVec<T> = BoundedVec<T, 1, { usize::MAX }>;
A non-empty Vec with no effective upper-bound on its length