pub struct ExprPath {
pub qself: Option<QSelf>,
pub path: Path,
}
Expand description
Variable reference, possibly containing ::
and/or type
parameters, e.g. foo::bar::
Optionally “qualified”,
E.g. <Vec<T> as SomeTrait>::SomeType
.
Fields§
§qself: Option<QSelf>
§path: Path
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExprPath
impl RefUnwindSafe for ExprPath
impl !Send for ExprPath
impl !Sync for ExprPath
impl Unpin for ExprPath
impl UnwindSafe for ExprPath
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more