Struct rustc_hir::hir::PathSegment
source · pub struct PathSegment<'hir> {
pub ident: Ident,
pub hir_id: HirId,
pub res: Res,
pub args: Option<&'hir GenericArgs<'hir>>,
pub infer_args: bool,
}
Expand description
A segment of a path: an identifier, an optional lifetime, and a set of types.
Fields§
§ident: Ident
The identifier portion of this path segment.
hir_id: HirId
§res: Res
§args: Option<&'hir GenericArgs<'hir>>
Type/lifetime parameters attached to this path. They come in
two flavors: Path<A,B,C>
and Path(A,B) -> C
. Note that
this is more than just simple syntactic sugar; the use of
parens affects the region binding rules, so we preserve the
distinction.
infer_args: bool
Whether to infer remaining type parameters, if any.
This only applies to expression and pattern paths, and
out of those only the segments with no type parameters
to begin with, e.g., Vec::new
is <Vec<..>>::new::<..>
.
Implementations§
source§impl<'hir> PathSegment<'hir>
impl<'hir> PathSegment<'hir>
Trait Implementations§
source§impl<'tcx> ArenaAllocatable<'tcx, IsNotCopy> for PathSegment<'tcx>
impl<'tcx> ArenaAllocatable<'tcx, IsNotCopy> for PathSegment<'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> Debug for PathSegment<'hir>
impl<'hir> Debug for PathSegment<'hir>
source§impl<'hir, __CTX> HashStable<__CTX> for PathSegment<'hir>where
__CTX: HashStableContext,
impl<'hir, __CTX> HashStable<__CTX> for PathSegment<'hir>where
__CTX: HashStableContext,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
Auto Trait Implementations§
impl<'hir> RefUnwindSafe for PathSegment<'hir>
impl<'hir> !Send for PathSegment<'hir>
impl<'hir> !Sync for PathSegment<'hir>
impl<'hir> Unpin for PathSegment<'hir>
impl<'hir> UnwindSafe for PathSegment<'hir>
Blanket Implementations§
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 48 bytes