Enum syn::PathArguments [−][src]
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
The <'a, T>
in std::slice::iter<'a, T>
.
Tuple Fields of AngleBracketed
The (A, B) -> C
in Fn(A, B) -> C
.
Tuple Fields of Parenthesized
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for PathArguments
impl !Send for PathArguments
impl !Sync for PathArguments
impl Unpin for PathArguments
impl UnwindSafe for PathArguments
Blanket Implementations
Mutably borrows from an owned value. Read more