pub fn parse_repeated<T: Parse>(input: ParseStream<'_>) -> Result<Vec<T>>
Expand description

Attempts to repeatedly parse input into the given syntax tree node, using T’s default parsing implementation, and continuing until input is exhausted.