Struct syn::AngleBracketedGenericArguments
source · pub struct AngleBracketedGenericArguments {
pub colon2_token: Option<PathSep>,
pub lt_token: Lt,
pub args: Punctuated<GenericArgument, Comma>,
pub gt_token: Gt,
}Expand description
Angle bracketed arguments of a path segment: the <K, V> in HashMap<K, V>.
Fields§
§colon2_token: Option<PathSep>§lt_token: Lt§args: Punctuated<GenericArgument, Comma>§gt_token: Gt