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