Struct rustc_hir::hir::GenericArgs
source · pub struct GenericArgs<'hir> {
pub args: &'hir [GenericArg<'hir>],
pub constraints: &'hir [AssocItemConstraint<'hir>],
pub parenthesized: GenericArgsParentheses,
pub span_ext: Span,
}
Expand description
The generic arguments and associated item constraints of a path segment.
Fields§
§args: &'hir [GenericArg<'hir>]
The generic arguments for this path segment.
constraints: &'hir [AssocItemConstraint<'hir>]
The associated item constraints for this path segment.
parenthesized: GenericArgsParentheses
Whether the arguments were written in parenthesized form (e.g., Fn(T) -> U
).
This is required mostly for pretty-printing and diagnostics, but also for changing lifetime elision rules to be “function-like”.
span_ext: Span
The span encompassing the arguments, constraints and the surrounding brackets (<>
or ()
).
For example:
Foo<A, B, AssocTy = D> Fn(T, U, V) -> W
^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^
Note that this may be:
- empty, if there are no generic brackets (but there may be hidden lifetimes)
- dummy, if this was generated during desugaring
Implementations§
source§impl<'hir> GenericArgs<'hir>
impl<'hir> GenericArgs<'hir>
pub const fn none() -> Self
sourcepub fn paren_sugar_inputs_output(&self) -> Option<(&[Ty<'hir>], &Ty<'hir>)>
pub fn paren_sugar_inputs_output(&self) -> Option<(&[Ty<'hir>], &Ty<'hir>)>
Obtain the list of input types and the output type if the generic arguments are parenthesized.
Returns the Ty0, Ty1, ...
and the RetTy
in Trait(Ty0, Ty1, ...) -> RetTy
.
Panics if the parenthesized arguments have an incorrect form (this shouldn’t happen).
sourcepub fn paren_sugar_output(&self) -> Option<&Ty<'hir>>
pub fn paren_sugar_output(&self) -> Option<&Ty<'hir>>
Obtain the output type if the generic arguments are parenthesized.
Returns the RetTy
in Trait(Ty0, Ty1, ...) -> RetTy
.
Panics if the parenthesized arguments have an incorrect form (this shouldn’t happen).
fn paren_sugar_output_inner(&self) -> &Ty<'hir>
pub fn has_err(&self) -> Option<ErrorGuaranteed>
pub fn num_lifetime_params(&self) -> usize
pub fn has_lifetime_params(&self) -> bool
sourcepub fn num_generic_params(&self) -> usize
pub fn num_generic_params(&self) -> usize
This function returns the number of type and const generic params. It should only be used for diagnostics.
sourcepub fn span(&self) -> Option<Span>
pub fn span(&self) -> Option<Span>
The span encompassing the arguments and constraints1 inside the surrounding brackets.
Returns None
if the span is empty (i.e., no brackets) or dummy.
Unless of the form
-> Ty
(seeGenericArgsParentheses
). ↩
sourcepub fn span_ext(&self) -> Option<Span>
pub fn span_ext(&self) -> Option<Span>
Returns span encompassing arguments and their surrounding <>
or ()
pub fn is_empty(&self) -> bool
Trait Implementations§
source§impl<'hir> Clone for GenericArgs<'hir>
impl<'hir> Clone for GenericArgs<'hir>
source§fn clone(&self) -> GenericArgs<'hir>
fn clone(&self) -> GenericArgs<'hir>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'hir> Debug for GenericArgs<'hir>
impl<'hir> Debug for GenericArgs<'hir>
source§impl<'hir, __CTX> HashStable<__CTX> for GenericArgs<'hir>where
__CTX: HashStableContext,
impl<'hir, __CTX> HashStable<__CTX> for GenericArgs<'hir>where
__CTX: HashStableContext,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
impl<'hir> Copy for GenericArgs<'hir>
Auto Trait Implementations§
impl<'hir> Freeze for GenericArgs<'hir>
impl<'hir> RefUnwindSafe for GenericArgs<'hir>
impl<'hir> !Send for GenericArgs<'hir>
impl<'hir> !Sync for GenericArgs<'hir>
impl<'hir> Unpin for GenericArgs<'hir>
impl<'hir> UnwindSafe for GenericArgs<'hir>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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