pub type ExtendedAttributeList<'a> = Bracketed<Punctuated<ExtendedAttribute<'a>, Comma>>;Expand description
Parses a list of attributes. Ex: [ attribute1, attribute2 ]
Aliased Type§
struct ExtendedAttributeList<'a> {
pub open_bracket: OpenBracket,
pub body: Punctuated<ExtendedAttribute<'a>, Comma>,
pub close_bracket: CloseBracket,
}Fields§
§open_bracket: OpenBracket§body: Punctuated<ExtendedAttribute<'a>, Comma>§close_bracket: CloseBracket