Struct syn::PatPath [−][src]
Expand description
A path pattern like Color::Red
, optionally qualified with a
self-type.
Unqualified path patterns can legally refer to variants, structs,
constants or associated constants. Qualified path patterns like
<A>::B::C
and <A as Trait>::B::C
can only legally refer to
associated constants.
This type is available only if Syn is built with the "full"
feature.
Fields
attrs: Vec<Attribute>
qself: Option<QSelf>
path: Path
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for PatPath
impl UnwindSafe for PatPath
Blanket Implementations
Mutably borrows from an owned value. Read more