pub enum PathArguments {
    None,
    AngleBracketed(AngleBracketedGenericArguments),
    Parenthesized(ParenthesizedGenericArguments),
}
Expand description

Angle bracketed or parenthesized arguments of a path segment.

This type is available only if Syn is built with the "derive" or "full" feature.

Angle bracketed

The <'a, T> in std::slice::iter<'a, T>.

Parenthesized

The (A, B) -> C in Fn(A, B) -> C.

Variants

None

AngleBracketed(AngleBracketedGenericArguments)

The <'a, T> in std::slice::iter<'a, T>.

Parenthesized(ParenthesizedGenericArguments)

The (A, B) -> C in Fn(A, B) -> C.

Implementations

Trait Implementations

Returns the “default value” for a type. Read more

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.