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 !Send for PatPath
impl !Sync for PatPath
impl Unpin for PatPath
impl UnwindSafe for PatPath
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more