pub type AtMost<const N: usize, T, D = Nothing> = Repeats<0, N, T, D>;Expand description
At most N of T delimited by D or Nothing
Aliased Type§
struct AtMost<const N: usize, T, D = Nothing>(pub Vec<Delimited<T, D>>);Fields§
§0: Vec<Delimited<T, D>>