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<'tcx> ArenaAllocatable<'tcx, IsNotCopy> for Path<'tcx>
impl<'tcx> ArenaAllocatable<'tcx, IsNotCopy> for Path<'tcx>
fn allocate_on<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut Self
fn allocate_from_iter<'a>(
arena: &'a Arena<'tcx>,
iter: impl IntoIterator<Item = Self>
) -> &'a mut [Self] ⓘ
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)
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§
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.