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

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.