pub type CommaSeparatedArgumentList<T> = CommaSeparatedList<Argument<T>>;

Aliased Type§

struct CommaSeparatedArgumentList<T>(pub Punctuated<Argument<T>, Comma>);

Fields§

§0: Punctuated<Argument<T>, Comma>