pub struct Path<'hir, R = Res> {
pub span: Span,
pub res: R,
pub segments: &'hir [PathSegment<'hir>],
}
Expand description
A Path
is essentially Rust’s notion of a name; for instance,
std::cmp::PartialEq
. It’s represented as a sequence of identifiers,
along with a bunch of supporting information.
Fields§
§span: Span
§res: R
The resolution for the path.
segments: &'hir [PathSegment<'hir>]
The segments in the path: the things separated by ::
.
Implementations§
Trait Implementations§
source§impl<'hir, R, __CTX> HashStable<__CTX> for Path<'hir, R>where
__CTX: HashStableContext,
R: HashStable<__CTX>,
impl<'hir, R, __CTX> HashStable<__CTX> for Path<'hir, R>where __CTX: HashStableContext, R: HashStable<__CTX>,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
impl<'hir, R: Copy> Copy for Path<'hir, R>
Auto Trait Implementations§
impl<'hir, R> RefUnwindSafe for Path<'hir, R>where R: RefUnwindSafe,
impl<'hir, R = Res<HirId>> !Send for Path<'hir, R>
impl<'hir, R = Res<HirId>> !Sync for Path<'hir, R>
impl<'hir, R> Unpin for Path<'hir, R>where R: Unpin,
impl<'hir, R> UnwindSafe for Path<'hir, R>where R: UnwindSafe,
Blanket Implementations§
source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere T: Copy,
fn allocate_on<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter<'a>( arena: &'a Arena<'tcx>, iter: impl IntoIterator<Item = T> ) -> &'a mut [T]
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
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.