Module syn::punctuated 
source · Expand description
A punctuated sequence of syntax tree nodes separated by punctuation.
Lots of things in Rust are punctuated sequences.
- The fields of a struct are Punctuated<Field, Token![,]>.
- The segments of a path are Punctuated<PathSegment, Token![::]>.
- The bounds on a generic parameter are Punctuated<TypeParamBound, Token![+]>.
- The arguments to a function call are Punctuated<Expr, Token![,]>.
This module provides a common representation for these punctuated sequences
in the form of the Punctuated<T, P> type. We store a vector of pairs of
syntax tree node + punctuation, where every node in the sequence is followed
by punctuation except for possibly the final one.
a_function_call(arg1, arg2, arg3);
                ~~~~^ ~~~~^ ~~~~
Structs
- An iterator over owned values of typeT.
- An iterator over owned pairs of typePair<T, P>.
- An iterator over borrowed values of type&T.
- An iterator over mutably borrowed values of type&mut T.
- An iterator over borrowed pairs of typePair<&T, &P>.
- An iterator over mutably borrowed pairs of typePair<&mut T, &mut P>.
- A punctuated sequence of syntax tree nodes of typeTseparated by punctuation of typeP.
Enums
- A single syntax tree node of typeTfollowed by its trailing punctuation of typePif any.