Skip to main content

rustc_hir/
hir.rs

1// ignore-tidy-filelength
2use std::borrow::Cow;
3use std::fmt;
4use std::ops::Not;
5
6use rustc_abi::ExternAbi;
7use rustc_ast::attr::AttributeExt;
8use rustc_ast::token::DocFragmentKind;
9use rustc_ast::util::parser::ExprPrecedence;
10use rustc_ast::{
11    self as ast, FloatTy, InlineAsmOptions, InlineAsmTemplatePiece, IntTy, Label, LitIntType,
12    LitKind, TraitObjectSyntax, UintTy, UnsafeBinderCastKind, join_path_idents,
13};
14pub use rustc_ast::{
15    AssignOp, AssignOpKind, AttrId, AttrStyle, BinOp, BinOpKind, BindingMode, BorrowKind,
16    BoundConstness, BoundPolarity, ByRef, CaptureBy, DelimArgs, ImplPolarity, IsAuto,
17    MetaItemInner, MetaItemLit, Movability, Mutability, Pinnedness, UnOp,
18};
19use rustc_data_structures::fingerprint::Fingerprint;
20use rustc_data_structures::sorted_map::SortedMap;
21use rustc_data_structures::steal::Steal;
22use rustc_data_structures::tagged_ptr::TaggedRef;
23use rustc_error_messages::{DiagArgValue, IntoDiagArg};
24use rustc_index::IndexVec;
25use rustc_macros::{Decodable, Encodable, StableHash};
26use rustc_span::def_id::LocalDefId;
27use rustc_span::{
28    BytePos, DUMMY_SP, DesugaringKind, ErrorGuaranteed, Ident, Span, Spanned, Symbol, kw, sym,
29};
30use rustc_target::asm::InlineAsmRegOrRegClass;
31use smallvec::SmallVec;
32use thin_vec::ThinVec;
33use tracing::debug;
34
35use crate::attrs::AttributeKind;
36use crate::def::{CtorKind, DefKind, MacroKinds, PerNS, Res};
37use crate::def_id::{DefId, LocalDefIdMap};
38pub(crate) use crate::hir_id::{HirId, ItemLocalId, ItemLocalMap, OwnerId};
39use crate::intravisit::{FnKind, VisitorExt};
40use crate::lints::DelayedLints;
41
42#[derive(#[automatically_derived]
impl ::core::fmt::Debug for AngleBrackets {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                AngleBrackets::Missing => "Missing",
                AngleBrackets::Empty => "Empty",
                AngleBrackets::Full => "Full",
            })
    }
}Debug, #[automatically_derived]
impl ::core::marker::Copy for AngleBrackets { }Copy, #[automatically_derived]
impl ::core::clone::Clone for AngleBrackets {
    #[inline]
    fn clone(&self) -> AngleBrackets { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for AngleBrackets {
    #[inline]
    fn eq(&self, other: &AngleBrackets) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for AngleBrackets {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            AngleBrackets {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    AngleBrackets::Missing => {}
                    AngleBrackets::Empty => {}
                    AngleBrackets::Full => {}
                }
            }
        }
    };StableHash)]
43pub enum AngleBrackets {
44    /// E.g. `Path`.
45    Missing,
46    /// E.g. `Path<>`.
47    Empty,
48    /// E.g. `Path<T>`.
49    Full,
50}
51
52#[derive(#[automatically_derived]
impl ::core::fmt::Debug for LifetimeSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            LifetimeSource::Reference =>
                ::core::fmt::Formatter::write_str(f, "Reference"),
            LifetimeSource::Path { angle_brackets: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Path",
                    "angle_brackets", &__self_0),
            LifetimeSource::OutlivesBound =>
                ::core::fmt::Formatter::write_str(f, "OutlivesBound"),
            LifetimeSource::PreciseCapturing =>
                ::core::fmt::Formatter::write_str(f, "PreciseCapturing"),
            LifetimeSource::Other =>
                ::core::fmt::Formatter::write_str(f, "Other"),
        }
    }
}Debug, #[automatically_derived]
impl ::core::marker::Copy for LifetimeSource { }Copy, #[automatically_derived]
impl ::core::clone::Clone for LifetimeSource {
    #[inline]
    fn clone(&self) -> LifetimeSource {
        let _: ::core::clone::AssertParamIsClone<AngleBrackets>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for LifetimeSource {
    #[inline]
    fn eq(&self, other: &LifetimeSource) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (LifetimeSource::Path { angle_brackets: __self_0 },
                    LifetimeSource::Path { angle_brackets: __arg1_0 }) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for LifetimeSource {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<AngleBrackets>;
    }
}Eq, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            LifetimeSource {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    LifetimeSource::Reference => {}
                    LifetimeSource::Path { angle_brackets: ref __binding_0 } =>
                        {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    LifetimeSource::OutlivesBound => {}
                    LifetimeSource::PreciseCapturing => {}
                    LifetimeSource::Other => {}
                }
            }
        }
    };StableHash)]
53pub enum LifetimeSource {
54    /// E.g. `&Type`, `&'_ Type`, `&'a Type`, `&mut Type`, `&'_ mut Type`, `&'a mut Type`
55    Reference,
56
57    /// E.g. `ContainsLifetime`, `ContainsLifetime<>`, `ContainsLifetime<'_>`,
58    /// `ContainsLifetime<'a>`
59    Path { angle_brackets: AngleBrackets },
60
61    /// E.g. `impl Trait + '_`, `impl Trait + 'a`
62    OutlivesBound,
63
64    /// E.g. `impl Trait + use<'_>`, `impl Trait + use<'a>`
65    PreciseCapturing,
66
67    /// Other usages which have not yet been categorized. Feel free to
68    /// add new sources that you find useful.
69    ///
70    /// Some non-exhaustive examples:
71    /// - `where T: 'a`
72    /// - `fn(_: dyn Trait + 'a)`
73    Other,
74}
75
76#[derive(#[automatically_derived]
impl ::core::fmt::Debug for LifetimeSyntax {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                LifetimeSyntax::Implicit => "Implicit",
                LifetimeSyntax::ExplicitAnonymous => "ExplicitAnonymous",
                LifetimeSyntax::ExplicitBound => "ExplicitBound",
            })
    }
}Debug, #[automatically_derived]
impl ::core::marker::Copy for LifetimeSyntax { }Copy, #[automatically_derived]
impl ::core::clone::Clone for LifetimeSyntax {
    #[inline]
    fn clone(&self) -> LifetimeSyntax { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for LifetimeSyntax {
    #[inline]
    fn eq(&self, other: &LifetimeSyntax) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for LifetimeSyntax {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            LifetimeSyntax {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    LifetimeSyntax::Implicit => {}
                    LifetimeSyntax::ExplicitAnonymous => {}
                    LifetimeSyntax::ExplicitBound => {}
                }
            }
        }
    };StableHash)]
77pub enum LifetimeSyntax {
78    /// E.g. `&Type`, `ContainsLifetime`
79    Implicit,
80
81    /// E.g. `&'_ Type`, `ContainsLifetime<'_>`, `impl Trait + '_`, `impl Trait + use<'_>`
82    ExplicitAnonymous,
83
84    /// E.g. `&'a Type`, `ContainsLifetime<'a>`, `impl Trait + 'a`, `impl Trait + use<'a>`
85    ExplicitBound,
86}
87
88impl From<Ident> for LifetimeSyntax {
89    fn from(ident: Ident) -> Self {
90        let name = ident.name;
91
92        if name == sym::empty {
93            {
    ::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
            format_args!("A lifetime name should never be empty")));
};unreachable!("A lifetime name should never be empty");
94        } else if name == kw::UnderscoreLifetime {
95            LifetimeSyntax::ExplicitAnonymous
96        } else {
97            if true {
    if !name.as_str().starts_with('\'') {
        ::core::panicking::panic("assertion failed: name.as_str().starts_with(\'\\\'\')")
    };
};debug_assert!(name.as_str().starts_with('\''));
98            LifetimeSyntax::ExplicitBound
99        }
100    }
101}
102
103/// A lifetime. The valid field combinations are non-obvious and not all
104/// combinations are possible. The following example shows some of
105/// them. See also the comments on `LifetimeKind` and `LifetimeSource`.
106///
107/// ```
108/// #[repr(C)]
109/// struct S<'a>(&'a u32);       // res=Param, name='a, source=Reference, syntax=ExplicitBound
110/// unsafe extern "C" {
111///     fn f1(s: S);             // res=Param, name='_, source=Path, syntax=Implicit
112///     fn f2(s: S<'_>);         // res=Param, name='_, source=Path, syntax=ExplicitAnonymous
113///     fn f3<'a>(s: S<'a>);     // res=Param, name='a, source=Path, syntax=ExplicitBound
114/// }
115///
116/// struct St<'a> { x: &'a u32 } // res=Param, name='a, source=Reference, syntax=ExplicitBound
117/// fn f() {
118///     _ = St { x: &0 };        // res=Infer, name='_, source=Path, syntax=Implicit
119///     _ = St::<'_> { x: &0 };  // res=Infer, name='_, source=Path, syntax=ExplicitAnonymous
120/// }
121///
122/// struct Name<'a>(&'a str);    // res=Param,  name='a, source=Reference, syntax=ExplicitBound
123/// const A: Name = Name("a");   // res=Static, name='_, source=Path, syntax=Implicit
124/// const B: &str = "";          // res=Static, name='_, source=Reference, syntax=Implicit
125/// static C: &'_ str = "";      // res=Static, name='_, source=Reference, syntax=ExplicitAnonymous
126/// static D: &'static str = ""; // res=Static, name='static, source=Reference, syntax=ExplicitBound
127///
128/// trait Tr {}
129/// fn tr(_: Box<dyn Tr>) {}     // res=ImplicitObjectLifetimeDefault, name='_, source=Other, syntax=Implicit
130///
131/// fn capture_outlives<'a>() ->
132///     impl FnOnce() + 'a       // res=Param, ident='a, source=OutlivesBound, syntax=ExplicitBound
133/// {
134///     || {}
135/// }
136///
137/// fn capture_precise<'a>() ->
138///     impl FnOnce() + use<'a>  // res=Param, ident='a, source=PreciseCapturing, syntax=ExplicitBound
139/// {
140///     || {}
141/// }
142///
143/// // (commented out because these cases trigger errors)
144/// // struct S1<'a>(&'a str);   // res=Param, name='a, source=Reference, syntax=ExplicitBound
145/// // struct S2(S1);            // res=Error, name='_, source=Path, syntax=Implicit
146/// // struct S3(S1<'_>);        // res=Error, name='_, source=Path, syntax=ExplicitAnonymous
147/// // struct S4(S1<'a>);        // res=Error, name='a, source=Path, syntax=ExplicitBound
148/// ```
149///
150/// Some combinations that cannot occur are `LifetimeSyntax::Implicit` with
151/// `LifetimeSource::OutlivesBound` or `LifetimeSource::PreciseCapturing`
152/// — there's no way to "elide" these lifetimes.
153#[derive(#[automatically_derived]
impl ::core::fmt::Debug for Lifetime {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "Lifetime",
            "hir_id", &self.hir_id, "ident", &self.ident, "kind", &self.kind,
            "source", &self.source, "syntax", &&self.syntax)
    }
}Debug, #[automatically_derived]
impl ::core::marker::Copy for Lifetime { }Copy, #[automatically_derived]
impl ::core::clone::Clone for Lifetime {
    #[inline]
    fn clone(&self) -> Lifetime {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<LifetimeKind>;
        let _: ::core::clone::AssertParamIsClone<LifetimeSource>;
        let _: ::core::clone::AssertParamIsClone<LifetimeSyntax>;
        *self
    }
}Clone, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for Lifetime {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Lifetime {
                        hir_id: ref __binding_0,
                        ident: ref __binding_1,
                        kind: ref __binding_2,
                        source: ref __binding_3,
                        syntax: ref __binding_4 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
154// Raise the alignment to at least 4 bytes.
155// This is relied on in other parts of the compiler (for pointer tagging):
156// <https://github.com/rust-lang/rust/blob/ce5fdd7d42aba9a2925692e11af2bd39cf37798a/compiler/rustc_data_structures/src/tagged_ptr.rs#L163>
157// Removing this `repr(4)` will cause the compiler to not build on platforms
158// like `m68k` Linux, where the alignment of u32 and usize is only 2.
159// Since `repr(align)` may only raise alignment, this has no effect on
160// platforms where the alignment is already sufficient.
161#[repr(align(4))]
162pub struct Lifetime {
163    #[stable_hash(ignore)]
164    pub hir_id: HirId,
165
166    /// Either a named lifetime definition (e.g. `'a`, `'static`) or an
167    /// anonymous lifetime (`'_`, either explicitly written, or inserted for
168    /// things like `&type`).
169    pub ident: Ident,
170
171    /// Semantics of this lifetime.
172    pub kind: LifetimeKind,
173
174    /// The context in which the lifetime occurred. See `Lifetime::suggestion`
175    /// for example use.
176    pub source: LifetimeSource,
177
178    /// The syntax that the user used to declare this lifetime. See
179    /// `Lifetime::suggestion` for example use.
180    pub syntax: LifetimeSyntax,
181}
182
183#[derive(#[automatically_derived]
impl ::core::fmt::Debug for ParamName {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ParamName::Plain(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Plain",
                    &__self_0),
            ParamName::Error(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Error",
                    &__self_0),
            ParamName::Fresh => ::core::fmt::Formatter::write_str(f, "Fresh"),
        }
    }
}Debug, #[automatically_derived]
impl ::core::marker::Copy for ParamName { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ParamName {
    #[inline]
    fn clone(&self) -> ParamName {
        let _: ::core::clone::AssertParamIsClone<Ident>;
        *self
    }
}Clone, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for ParamName {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    ParamName::Plain(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ParamName::Error(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ParamName::Fresh => {}
                }
            }
        }
    };StableHash)]
184pub enum ParamName {
185    /// Some user-given name like `T` or `'x`.
186    Plain(Ident),
187
188    /// Indicates an illegal name was given and an error has been
189    /// reported (so we should squelch other derived errors).
190    ///
191    /// Occurs when, e.g., `'_` is used in the wrong place, or a
192    /// lifetime name is duplicated.
193    Error(Ident),
194
195    /// Synthetic name generated when user elided a lifetime in an impl header.
196    ///
197    /// E.g., the lifetimes in cases like these:
198    /// ```ignore (fragment)
199    /// impl Foo for &u32
200    /// impl Foo<'_> for u32
201    /// ```
202    /// in that case, we rewrite to
203    /// ```ignore (fragment)
204    /// impl<'f> Foo for &'f u32
205    /// impl<'f> Foo<'f> for u32
206    /// ```
207    /// where `'f` is something like `Fresh(0)`. The indices are
208    /// unique per impl, but not necessarily continuous.
209    Fresh,
210}
211
212impl ParamName {
213    pub fn ident(&self) -> Ident {
214        match *self {
215            ParamName::Plain(ident) | ParamName::Error(ident) => ident,
216            ParamName::Fresh => Ident::with_dummy_span(kw::UnderscoreLifetime),
217        }
218    }
219}
220
221#[derive(#[automatically_derived]
impl ::core::fmt::Debug for LifetimeKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            LifetimeKind::Param(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Param",
                    &__self_0),
            LifetimeKind::ImplicitObjectLifetimeDefault =>
                ::core::fmt::Formatter::write_str(f,
                    "ImplicitObjectLifetimeDefault"),
            LifetimeKind::Error(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Error",
                    &__self_0),
            LifetimeKind::Infer =>
                ::core::fmt::Formatter::write_str(f, "Infer"),
            LifetimeKind::Static =>
                ::core::fmt::Formatter::write_str(f, "Static"),
        }
    }
}Debug, #[automatically_derived]
impl ::core::marker::Copy for LifetimeKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for LifetimeKind {
    #[inline]
    fn clone(&self) -> LifetimeKind {
        let _: ::core::clone::AssertParamIsClone<LocalDefId>;
        let _: ::core::clone::AssertParamIsClone<ErrorGuaranteed>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for LifetimeKind {
    #[inline]
    fn eq(&self, other: &LifetimeKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (LifetimeKind::Param(__self_0), LifetimeKind::Param(__arg1_0))
                    => __self_0 == __arg1_0,
                (LifetimeKind::Error(__self_0), LifetimeKind::Error(__arg1_0))
                    => __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for LifetimeKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<LocalDefId>;
        let _: ::core::cmp::AssertParamIsEq<ErrorGuaranteed>;
    }
}Eq, #[automatically_derived]
impl ::core::hash::Hash for LifetimeKind {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state);
        match self {
            LifetimeKind::Param(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            LifetimeKind::Error(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            _ => {}
        }
    }
}Hash, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for LifetimeKind
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    LifetimeKind::Param(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    LifetimeKind::ImplicitObjectLifetimeDefault => {}
                    LifetimeKind::Error(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    LifetimeKind::Infer => {}
                    LifetimeKind::Static => {}
                }
            }
        }
    };StableHash)]
222pub enum LifetimeKind {
223    /// User-given names or fresh (synthetic) names.
224    Param(LocalDefId),
225
226    /// Implicit lifetime in a context like `dyn Foo`. This is
227    /// distinguished from implicit lifetimes elsewhere because the
228    /// lifetime that they default to must appear elsewhere within the
229    /// enclosing type. This means that, in an `impl Trait` context, we
230    /// don't have to create a parameter for them. That is, `impl
231    /// Trait<Item = &u32>` expands to an opaque type like `type
232    /// Foo<'a> = impl Trait<Item = &'a u32>`, but `impl Trait<item =
233    /// dyn Bar>` expands to `type Foo = impl Trait<Item = dyn Bar +
234    /// 'static>`. The latter uses `ImplicitObjectLifetimeDefault` so
235    /// that surrounding code knows not to create a lifetime
236    /// parameter.
237    ImplicitObjectLifetimeDefault,
238
239    /// Indicates an error during lowering (usually `'_` in wrong place)
240    /// that was already reported.
241    Error(ErrorGuaranteed),
242
243    /// User wrote an anonymous lifetime, either `'_` or nothing (which gets
244    /// converted to `'_`). The semantics of this lifetime should be inferred
245    /// by typechecking code.
246    Infer,
247
248    /// User wrote `'static` or nothing (which gets converted to `'_`).
249    Static,
250}
251
252impl LifetimeKind {
253    fn is_elided(&self) -> bool {
254        match self {
255            LifetimeKind::ImplicitObjectLifetimeDefault | LifetimeKind::Infer => true,
256
257            // It might seem surprising that `Fresh` counts as not *elided*
258            // -- but this is because, as far as the code in the compiler is
259            // concerned -- `Fresh` variants act equivalently to "some fresh name".
260            // They correspond to early-bound regions on an impl, in other words.
261            LifetimeKind::Error(..) | LifetimeKind::Param(..) | LifetimeKind::Static => false,
262        }
263    }
264}
265
266impl fmt::Display for Lifetime {
267    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
268        self.ident.name.fmt(f)
269    }
270}
271
272impl Lifetime {
273    pub fn new(
274        hir_id: HirId,
275        ident: Ident,
276        kind: LifetimeKind,
277        source: LifetimeSource,
278        syntax: LifetimeSyntax,
279    ) -> Lifetime {
280        let lifetime = Lifetime { hir_id, ident, kind, source, syntax };
281
282        // Sanity check: elided lifetimes form a strict subset of anonymous lifetimes.
283        #[cfg(debug_assertions)]
284        match (lifetime.is_elided(), lifetime.is_anonymous()) {
285            (false, false) => {} // e.g. `'a`
286            (false, true) => {}  // e.g. explicit `'_`
287            (true, true) => {}   // e.g. `&x`
288            (true, false) => { ::core::panicking::panic_fmt(format_args!("bad Lifetime")); }panic!("bad Lifetime"),
289        }
290
291        lifetime
292    }
293
294    pub fn is_elided(&self) -> bool {
295        self.kind.is_elided()
296    }
297
298    pub fn is_anonymous(&self) -> bool {
299        self.ident.name == kw::UnderscoreLifetime
300    }
301
302    pub fn is_implicit(&self) -> bool {
303        #[allow(non_exhaustive_omitted_patterns)] match self.syntax {
    LifetimeSyntax::Implicit => true,
    _ => false,
}matches!(self.syntax, LifetimeSyntax::Implicit)
304    }
305
306    pub fn is_static(&self) -> bool {
307        self.kind == LifetimeKind::Static
308    }
309
310    pub fn suggestion(&self, new_lifetime: &str) -> (Span, String) {
311        use LifetimeSource::*;
312        use LifetimeSyntax::*;
313
314        if true {
    if !new_lifetime.starts_with('\'') {
        ::core::panicking::panic("assertion failed: new_lifetime.starts_with(\'\\\'\')")
    };
};debug_assert!(new_lifetime.starts_with('\''));
315
316        match (self.syntax, self.source) {
317            // The user wrote `'a` or `'_`.
318            (ExplicitBound | ExplicitAnonymous, _) => (self.ident.span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}", new_lifetime))
    })format!("{new_lifetime}")),
319
320            // The user wrote `Path<T>`, and omitted the `'_,`.
321            (Implicit, Path { angle_brackets: AngleBrackets::Full }) => {
322                (self.ident.span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}, ", new_lifetime))
    })format!("{new_lifetime}, "))
323            }
324
325            // The user wrote `Path<>`, and omitted the `'_`..
326            (Implicit, Path { angle_brackets: AngleBrackets::Empty }) => {
327                (self.ident.span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}", new_lifetime))
    })format!("{new_lifetime}"))
328            }
329
330            // The user wrote `Path` and omitted the `<'_>`.
331            (Implicit, Path { angle_brackets: AngleBrackets::Missing }) => {
332                (self.ident.span.shrink_to_hi(), ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("<{0}>", new_lifetime))
    })format!("<{new_lifetime}>"))
333            }
334
335            // The user wrote `&type` or `&mut type`.
336            (Implicit, Reference) => (self.ident.span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0} ", new_lifetime))
    })format!("{new_lifetime} ")),
337
338            (Implicit, source) => {
339                {
    ::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
            format_args!("can\'t suggest for a implicit lifetime of {0:?}",
                source)));
}unreachable!("can't suggest for a implicit lifetime of {source:?}")
340            }
341        }
342    }
343}
344
345/// A `Path` is essentially Rust's notion of a name; for instance,
346/// `std::cmp::PartialEq`. It's represented as a sequence of identifiers,
347/// along with a bunch of supporting information.
348#[derive(#[automatically_derived]
impl<'hir, R: ::core::fmt::Debug> ::core::fmt::Debug for Path<'hir, R> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "Path", "span",
            &self.span, "res", &self.res, "segments", &&self.segments)
    }
}Debug, #[automatically_derived]
impl<'hir, R: ::core::clone::Clone> ::core::clone::Clone for Path<'hir, R> {
    #[inline]
    fn clone(&self) -> Path<'hir, R> {
        Path {
            span: ::core::clone::Clone::clone(&self.span),
            res: ::core::clone::Clone::clone(&self.res),
            segments: ::core::clone::Clone::clone(&self.segments),
        }
    }
}Clone, #[automatically_derived]
impl<'hir, R: ::core::marker::Copy> ::core::marker::Copy for Path<'hir, R> { }Copy, const _: () =
    {
        impl<'hir, R> ::rustc_data_structures::stable_hash::StableHash for
            Path<'hir, R> where
            R: ::rustc_data_structures::stable_hash::StableHash {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Path {
                        span: ref __binding_0,
                        res: ref __binding_1,
                        segments: ref __binding_2 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
349pub struct Path<'hir, R = Res> {
350    pub span: Span,
351    /// The resolution for the path.
352    pub res: R,
353    /// The segments in the path: the things separated by `::`.
354    pub segments: &'hir [PathSegment<'hir>],
355}
356
357/// Up to three resolutions for type, value and macro namespaces.
358pub type UsePath<'hir> = Path<'hir, PerNS<Option<Res>>>;
359
360impl Path<'_> {
361    pub fn is_global(&self) -> bool {
362        self.segments.first().is_some_and(|segment| segment.ident.name == kw::PathRoot)
363    }
364}
365
366/// A segment of a path: an identifier, an optional lifetime, and a set of
367/// types.
368#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for PathSegment<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "PathSegment",
            "ident", &self.ident, "hir_id", &self.hir_id, "res", &self.res,
            "args", &self.args, "infer_args", &&self.infer_args)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for PathSegment<'hir> {
    #[inline]
    fn clone(&self) -> PathSegment<'hir> {
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<Res>;
        let _:
                ::core::clone::AssertParamIsClone<Option<&'hir GenericArgs<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for PathSegment<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            PathSegment<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    PathSegment {
                        ident: ref __binding_0,
                        hir_id: ref __binding_1,
                        res: ref __binding_2,
                        args: ref __binding_3,
                        infer_args: ref __binding_4 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        {}
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
369pub struct PathSegment<'hir> {
370    /// The identifier portion of this path segment.
371    pub ident: Ident,
372    #[stable_hash(ignore)]
373    pub hir_id: HirId,
374    pub res: Res,
375
376    /// Type/lifetime parameters attached to this path. They come in
377    /// two flavors: `Path<A,B,C>` and `Path(A,B) -> C`. Note that
378    /// this is more than just simple syntactic sugar; the use of
379    /// parens affects the region binding rules, so we preserve the
380    /// distinction.
381    pub args: Option<&'hir GenericArgs<'hir>>,
382
383    /// Whether to infer remaining type parameters, if any.
384    /// This only applies to expression and pattern paths, and
385    /// out of those only the segments with no type parameters
386    /// to begin with, e.g., `Vec::new` is `<Vec<..>>::new::<..>`.
387    pub infer_args: bool,
388}
389
390impl<'hir> PathSegment<'hir> {
391    /// Converts an identifier to the corresponding segment.
392    pub fn new(ident: Ident, hir_id: HirId, res: Res) -> PathSegment<'hir> {
393        PathSegment { ident, hir_id, res, infer_args: true, args: None }
394    }
395
396    pub fn invalid() -> Self {
397        Self::new(Ident::dummy(), HirId::INVALID, Res::Err)
398    }
399
400    pub fn args(&self) -> &GenericArgs<'hir> {
401        if let Some(ref args) = self.args { args } else { GenericArgs::NONE }
402    }
403}
404
405#[derive(#[automatically_derived]
impl<'hir> ::core::clone::Clone for ConstItemRhs<'hir> {
    #[inline]
    fn clone(&self) -> ConstItemRhs<'hir> {
        let _: ::core::clone::AssertParamIsClone<BodyId>;
        let _: ::core::clone::AssertParamIsClone<&'hir ConstArg<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for ConstItemRhs<'hir> { }Copy, #[automatically_derived]
impl<'hir> ::core::fmt::Debug for ConstItemRhs<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ConstItemRhs::Body(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Body",
                    &__self_0),
            ConstItemRhs::TypeConst(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "TypeConst", &__self_0),
        }
    }
}Debug, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            ConstItemRhs<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    ConstItemRhs::Body(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ConstItemRhs::TypeConst(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
406pub enum ConstItemRhs<'hir> {
407    Body(BodyId),
408    TypeConst(&'hir ConstArg<'hir>),
409}
410
411impl<'hir> ConstItemRhs<'hir> {
412    pub fn hir_id(&self) -> HirId {
413        match self {
414            ConstItemRhs::Body(body_id) => body_id.hir_id,
415            ConstItemRhs::TypeConst(ct_arg) => ct_arg.hir_id,
416        }
417    }
418
419    pub fn span<'tcx>(&self, tcx: impl crate::intravisit::HirTyCtxt<'tcx>) -> Span {
420        match self {
421            ConstItemRhs::Body(body_id) => tcx.hir_body(*body_id).value.span,
422            ConstItemRhs::TypeConst(ct_arg) => ct_arg.span,
423        }
424    }
425}
426
427/// A constant that enters the type system, used for arguments to const generics (e.g. array lengths).
428///
429/// These are distinct from [`AnonConst`] as anon consts in the type system are not allowed
430/// to use any generic parameters, therefore we must represent `N` differently. Additionally
431/// future designs for supporting generic parameters in const arguments will likely not use
432/// an anon const based design.
433///
434/// So, `ConstArg` (specifically, [`ConstArgKind`]) distinguishes between const args
435/// that are [just paths](ConstArgKind::Path) (currently just bare const params)
436/// versus const args that are literals or have arbitrary computations (e.g., `{ 1 + 3 }`).
437///
438/// For an explanation of the `Unambig` generic parameter see the dev-guide:
439/// <https://rustc-dev-guide.rust-lang.org/ambig-unambig-ty-and-consts.html>
440#[derive(#[automatically_derived]
impl<'hir, Unambig: ::core::clone::Clone> ::core::clone::Clone for
    ConstArg<'hir, Unambig> {
    #[inline]
    fn clone(&self) -> ConstArg<'hir, Unambig> {
        ConstArg {
            hir_id: ::core::clone::Clone::clone(&self.hir_id),
            kind: ::core::clone::Clone::clone(&self.kind),
            span: ::core::clone::Clone::clone(&self.span),
        }
    }
}Clone, #[automatically_derived]
impl<'hir, Unambig: ::core::marker::Copy> ::core::marker::Copy for
    ConstArg<'hir, Unambig> {
}Copy, #[automatically_derived]
impl<'hir, Unambig: ::core::fmt::Debug> ::core::fmt::Debug for
    ConstArg<'hir, Unambig> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "ConstArg",
            "hir_id", &self.hir_id, "kind", &self.kind, "span", &&self.span)
    }
}Debug, const _: () =
    {
        impl<'hir, Unambig> ::rustc_data_structures::stable_hash::StableHash
            for ConstArg<'hir, Unambig> where
            Unambig: ::rustc_data_structures::stable_hash::StableHash {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    ConstArg {
                        hir_id: ref __binding_0,
                        kind: ref __binding_1,
                        span: ref __binding_2 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
441#[repr(C)]
442pub struct ConstArg<'hir, Unambig = ()> {
443    #[stable_hash(ignore)]
444    pub hir_id: HirId,
445    pub kind: ConstArgKind<'hir, Unambig>,
446    pub span: Span,
447}
448
449impl<'hir> ConstArg<'hir, AmbigArg> {
450    /// Converts a `ConstArg` in an ambiguous position to one in an unambiguous position.
451    ///
452    /// Functions accepting unambiguous consts may expect the [`ConstArgKind::Infer`] variant
453    /// to be used. Care should be taken to separately handle infer consts when calling this
454    /// function as it cannot be handled by downstream code making use of the returned const.
455    ///
456    /// In practice this may mean overriding the [`Visitor::visit_infer`][visit_infer] method on hir visitors, or
457    /// specifically matching on [`GenericArg::Infer`] when handling generic arguments.
458    ///
459    /// [visit_infer]: [rustc_hir::intravisit::Visitor::visit_infer]
460    pub fn as_unambig_ct(&self) -> &ConstArg<'hir> {
461        // SAFETY: `ConstArg` is `repr(C)` and `ConstArgKind` is marked `repr(u8)` so that the
462        // layout is the same across different ZST type arguments.
463        let ptr = self as *const ConstArg<'hir, AmbigArg> as *const ConstArg<'hir, ()>;
464        unsafe { &*ptr }
465    }
466}
467
468impl<'hir> ConstArg<'hir> {
469    /// Converts a `ConstArg` in an unambiguous position to one in an ambiguous position. This is
470    /// fallible as the [`ConstArgKind::Infer`] variant is not present in ambiguous positions.
471    ///
472    /// Functions accepting ambiguous consts will not handle the [`ConstArgKind::Infer`] variant, if
473    /// infer consts are relevant to you then care should be taken to handle them separately.
474    pub fn try_as_ambig_ct(&self) -> Option<&ConstArg<'hir, AmbigArg>> {
475        if let ConstArgKind::Infer(()) = self.kind {
476            return None;
477        }
478
479        // SAFETY: `ConstArg` is `repr(C)` and `ConstArgKind` is marked `repr(u8)` so that the layout is
480        // the same across different ZST type arguments. We also asserted that the `self` is
481        // not a `ConstArgKind::Infer` so there is no risk of transmuting a `()` to `AmbigArg`.
482        let ptr = self as *const ConstArg<'hir> as *const ConstArg<'hir, AmbigArg>;
483        Some(unsafe { &*ptr })
484    }
485}
486
487impl<'hir, Unambig> ConstArg<'hir, Unambig> {
488    pub fn anon_const_hir_id(&self) -> Option<HirId> {
489        match self.kind {
490            ConstArgKind::Anon(ac) => Some(ac.hir_id),
491            _ => None,
492        }
493    }
494}
495
496/// See [`ConstArg`].
497#[derive(#[automatically_derived]
impl<'hir, Unambig: ::core::clone::Clone> ::core::clone::Clone for
    ConstArgKind<'hir, Unambig> {
    #[inline]
    fn clone(&self) -> ConstArgKind<'hir, Unambig> {
        match self {
            ConstArgKind::Tup(__self_0) =>
                ConstArgKind::Tup(::core::clone::Clone::clone(__self_0)),
            ConstArgKind::Path(__self_0) =>
                ConstArgKind::Path(::core::clone::Clone::clone(__self_0)),
            ConstArgKind::Anon(__self_0) =>
                ConstArgKind::Anon(::core::clone::Clone::clone(__self_0)),
            ConstArgKind::Struct(__self_0, __self_1) =>
                ConstArgKind::Struct(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            ConstArgKind::TupleCall(__self_0, __self_1) =>
                ConstArgKind::TupleCall(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            ConstArgKind::Array(__self_0) =>
                ConstArgKind::Array(::core::clone::Clone::clone(__self_0)),
            ConstArgKind::Error(__self_0) =>
                ConstArgKind::Error(::core::clone::Clone::clone(__self_0)),
            ConstArgKind::Infer(__self_0) =>
                ConstArgKind::Infer(::core::clone::Clone::clone(__self_0)),
            ConstArgKind::Literal { lit: __self_0, negated: __self_1 } =>
                ConstArgKind::Literal {
                    lit: ::core::clone::Clone::clone(__self_0),
                    negated: ::core::clone::Clone::clone(__self_1),
                },
        }
    }
}Clone, #[automatically_derived]
impl<'hir, Unambig: ::core::marker::Copy> ::core::marker::Copy for
    ConstArgKind<'hir, Unambig> {
}Copy, #[automatically_derived]
impl<'hir, Unambig: ::core::fmt::Debug> ::core::fmt::Debug for
    ConstArgKind<'hir, Unambig> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ConstArgKind::Tup(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Tup",
                    &__self_0),
            ConstArgKind::Path(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Path",
                    &__self_0),
            ConstArgKind::Anon(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Anon",
                    &__self_0),
            ConstArgKind::Struct(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Struct",
                    __self_0, &__self_1),
            ConstArgKind::TupleCall(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f,
                    "TupleCall", __self_0, &__self_1),
            ConstArgKind::Array(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Array",
                    &__self_0),
            ConstArgKind::Error(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Error",
                    &__self_0),
            ConstArgKind::Infer(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Infer",
                    &__self_0),
            ConstArgKind::Literal { lit: __self_0, negated: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "Literal", "lit", __self_0, "negated", &__self_1),
        }
    }
}Debug, const _: () =
    {
        impl<'hir, Unambig> ::rustc_data_structures::stable_hash::StableHash
            for ConstArgKind<'hir, Unambig> where
            Unambig: ::rustc_data_structures::stable_hash::StableHash {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    ConstArgKind::Tup(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ConstArgKind::Path(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ConstArgKind::Anon(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ConstArgKind::Struct(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ConstArgKind::TupleCall(ref __binding_0, ref __binding_1) =>
                        {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ConstArgKind::Array(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ConstArgKind::Error(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ConstArgKind::Infer(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ConstArgKind::Literal {
                        lit: ref __binding_0, negated: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
498#[repr(u8, C)]
499pub enum ConstArgKind<'hir, Unambig = ()> {
500    Tup(&'hir [&'hir ConstArg<'hir, Unambig>]),
501    /// **Note:** Currently this is only used for bare const params
502    /// (`N` where `fn foo<const N: usize>(...)`),
503    /// not paths to any const (`N` where `const N: usize = ...`).
504    ///
505    /// However, in the future, we'll be using it for all of those.
506    Path(QPath<'hir>),
507    Anon(&'hir AnonConst),
508    /// Represents construction of struct/struct variants
509    Struct(QPath<'hir>, &'hir [&'hir ConstArgExprField<'hir>]),
510    /// Tuple constructor variant
511    TupleCall(QPath<'hir>, &'hir [&'hir ConstArg<'hir>]),
512    /// Array literal argument
513    Array(&'hir ConstArgArrayExpr<'hir>),
514    /// Error const
515    Error(ErrorGuaranteed),
516    /// This variant is not always used to represent inference consts, sometimes
517    /// [`GenericArg::Infer`] is used instead.
518    Infer(Unambig),
519    Literal {
520        lit: LitKind,
521        negated: bool,
522    },
523}
524
525#[derive(#[automatically_derived]
impl<'hir> ::core::clone::Clone for ConstArgExprField<'hir> {
    #[inline]
    fn clone(&self) -> ConstArgExprField<'hir> {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<&'hir ConstArg<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for ConstArgExprField<'hir> { }Copy, #[automatically_derived]
impl<'hir> ::core::fmt::Debug for ConstArgExprField<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field4_finish(f,
            "ConstArgExprField", "hir_id", &self.hir_id, "span", &self.span,
            "field", &self.field, "expr", &&self.expr)
    }
}Debug, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            ConstArgExprField<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    ConstArgExprField {
                        hir_id: ref __binding_0,
                        span: ref __binding_1,
                        field: ref __binding_2,
                        expr: ref __binding_3 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
526pub struct ConstArgExprField<'hir> {
527    pub hir_id: HirId,
528    pub span: Span,
529    pub field: Ident,
530    pub expr: &'hir ConstArg<'hir>,
531}
532
533#[derive(#[automatically_derived]
impl<'hir> ::core::clone::Clone for ConstArgArrayExpr<'hir> {
    #[inline]
    fn clone(&self) -> ConstArgArrayExpr<'hir> {
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _:
                ::core::clone::AssertParamIsClone<&'hir [&'hir ConstArg<'hir>]>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for ConstArgArrayExpr<'hir> { }Copy, #[automatically_derived]
impl<'hir> ::core::fmt::Debug for ConstArgArrayExpr<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "ConstArgArrayExpr", "span", &self.span, "elems", &&self.elems)
    }
}Debug, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            ConstArgArrayExpr<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    ConstArgArrayExpr {
                        span: ref __binding_0, elems: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
534pub struct ConstArgArrayExpr<'hir> {
535    pub span: Span,
536    pub elems: &'hir [&'hir ConstArg<'hir>],
537}
538
539#[derive(#[automatically_derived]
impl ::core::clone::Clone for InferArg {
    #[inline]
    fn clone(&self) -> InferArg {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for InferArg { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for InferArg {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "InferArg",
            "hir_id", &self.hir_id, "span", &&self.span)
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for InferArg {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    InferArg { hir_id: ref __binding_0, span: ref __binding_1 }
                        => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
540pub struct InferArg {
541    #[stable_hash(ignore)]
542    pub hir_id: HirId,
543    pub span: Span,
544}
545
546impl InferArg {
547    pub fn to_ty(&self) -> Ty<'static> {
548        Ty { kind: TyKind::Infer(()), span: self.span, hir_id: self.hir_id }
549    }
550}
551
552#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for GenericArg<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            GenericArg::Lifetime(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Lifetime", &__self_0),
            GenericArg::Type(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Type",
                    &__self_0),
            GenericArg::Const(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Const",
                    &__self_0),
            GenericArg::Infer(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Infer",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for GenericArg<'hir> {
    #[inline]
    fn clone(&self) -> GenericArg<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir Lifetime>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir, AmbigArg>>;
        let _:
                ::core::clone::AssertParamIsClone<&'hir ConstArg<'hir,
                AmbigArg>>;
        let _: ::core::clone::AssertParamIsClone<InferArg>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for GenericArg<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            GenericArg<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    GenericArg::Lifetime(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    GenericArg::Type(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    GenericArg::Const(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    GenericArg::Infer(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
553pub enum GenericArg<'hir> {
554    Lifetime(&'hir Lifetime),
555    Type(&'hir Ty<'hir, AmbigArg>),
556    Const(&'hir ConstArg<'hir, AmbigArg>),
557    /// Inference variables in [`GenericArg`] are always represented by
558    /// `GenericArg::Infer` instead of the `Infer` variants on [`TyKind`] and
559    /// [`ConstArgKind`] as it is not clear until hir ty lowering whether a
560    /// `_` argument is a type or const argument.
561    ///
562    /// However, some builtin types' generic arguments are represented by [`TyKind`]
563    /// without a [`GenericArg`], instead directly storing a [`Ty`] or [`ConstArg`]. In
564    /// such cases they *are* represented by the `Infer` variants on [`TyKind`] and
565    /// [`ConstArgKind`] as it is not ambiguous whether the argument is a type or const.
566    Infer(InferArg),
567}
568
569impl GenericArg<'_> {
570    pub fn span(&self) -> Span {
571        match self {
572            GenericArg::Lifetime(l) => l.ident.span,
573            GenericArg::Type(t) => t.span,
574            GenericArg::Const(c) => c.span,
575            GenericArg::Infer(i) => i.span,
576        }
577    }
578
579    pub fn hir_id(&self) -> HirId {
580        match self {
581            GenericArg::Lifetime(l) => l.hir_id,
582            GenericArg::Type(t) => t.hir_id,
583            GenericArg::Const(c) => c.hir_id,
584            GenericArg::Infer(i) => i.hir_id,
585        }
586    }
587
588    pub fn descr(&self) -> &'static str {
589        match self {
590            GenericArg::Lifetime(_) => "lifetime",
591            GenericArg::Type(_) => "type",
592            GenericArg::Const(_) => "constant",
593            GenericArg::Infer(_) => "placeholder",
594        }
595    }
596
597    pub fn to_ord(&self) -> ast::ParamKindOrd {
598        match self {
599            GenericArg::Lifetime(_) => ast::ParamKindOrd::Lifetime,
600            GenericArg::Type(_) | GenericArg::Const(_) | GenericArg::Infer(_) => {
601                ast::ParamKindOrd::TypeOrConst
602            }
603        }
604    }
605
606    pub fn is_ty_or_const(&self) -> bool {
607        match self {
608            GenericArg::Lifetime(_) => false,
609            GenericArg::Type(_) | GenericArg::Const(_) | GenericArg::Infer(_) => true,
610        }
611    }
612}
613
614/// The generic arguments and associated item constraints of a path segment.
615#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for GenericArgs<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field4_finish(f, "GenericArgs",
            "args", &self.args, "constraints", &self.constraints,
            "parenthesized", &self.parenthesized, "span_ext", &&self.span_ext)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for GenericArgs<'hir> {
    #[inline]
    fn clone(&self) -> GenericArgs<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir [GenericArg<'hir>]>;
        let _:
                ::core::clone::AssertParamIsClone<&'hir [AssocItemConstraint<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<GenericArgsParentheses>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for GenericArgs<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            GenericArgs<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    GenericArgs {
                        args: ref __binding_0,
                        constraints: ref __binding_1,
                        parenthesized: ref __binding_2,
                        span_ext: ref __binding_3 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
616pub struct GenericArgs<'hir> {
617    /// The generic arguments for this path segment.
618    pub args: &'hir [GenericArg<'hir>],
619    /// The associated item constraints for this path segment.
620    pub constraints: &'hir [AssocItemConstraint<'hir>],
621    /// Whether the arguments were written in parenthesized form (e.g., `Fn(T) -> U`).
622    ///
623    /// This is required mostly for pretty-printing and diagnostics,
624    /// but also for changing lifetime elision rules to be "function-like".
625    pub parenthesized: GenericArgsParentheses,
626    /// The span encompassing the arguments, constraints and the surrounding brackets (`<>` or `()`).
627    ///
628    /// For example:
629    ///
630    /// ```ignore (illustrative)
631    ///       Foo<A, B, AssocTy = D>           Fn(T, U, V) -> W
632    ///          ^^^^^^^^^^^^^^^^^^^             ^^^^^^^^^
633    /// ```
634    ///
635    /// Note that this may be:
636    /// - empty, if there are no generic brackets (but there may be hidden lifetimes)
637    /// - dummy, if this was generated during desugaring
638    pub span_ext: Span,
639}
640
641impl<'hir> GenericArgs<'hir> {
642    pub const NONE: &'hir GenericArgs<'hir> = &GenericArgs {
643        args: &[],
644        constraints: &[],
645        parenthesized: GenericArgsParentheses::No,
646        span_ext: DUMMY_SP,
647    };
648
649    /// Obtain the list of input types and the output type if the generic arguments are parenthesized.
650    ///
651    /// Returns the `Ty0, Ty1, ...` and the `RetTy` in `Trait(Ty0, Ty1, ...) -> RetTy`.
652    /// Panics if the parenthesized arguments have an incorrect form (this shouldn't happen).
653    pub fn paren_sugar_inputs_output(&self) -> Option<(&[Ty<'hir>], &Ty<'hir>)> {
654        if self.parenthesized != GenericArgsParentheses::ParenSugar {
655            return None;
656        }
657
658        let inputs = self
659            .args
660            .iter()
661            .find_map(|arg| {
662                let GenericArg::Type(ty) = arg else { return None };
663                let TyKind::Tup(tys) = &ty.kind else { return None };
664                Some(tys)
665            })
666            .unwrap();
667
668        Some((inputs, self.paren_sugar_output_inner()))
669    }
670
671    /// Obtain the output type if the generic arguments are parenthesized.
672    ///
673    /// Returns the `RetTy` in `Trait(Ty0, Ty1, ...) -> RetTy`.
674    /// Panics if the parenthesized arguments have an incorrect form (this shouldn't happen).
675    pub fn paren_sugar_output(&self) -> Option<&Ty<'hir>> {
676        (self.parenthesized == GenericArgsParentheses::ParenSugar)
677            .then(|| self.paren_sugar_output_inner())
678    }
679
680    fn paren_sugar_output_inner(&self) -> &Ty<'hir> {
681        let [constraint] = self.constraints.try_into().unwrap();
682        if true {
    match (&constraint.ident.name, &sym::Output) {
        (left_val, right_val) => {
            if !(*left_val == *right_val) {
                let kind = ::core::panicking::AssertKind::Eq;
                ::core::panicking::assert_failed(kind, &*left_val,
                    &*right_val, ::core::option::Option::None);
            }
        }
    };
};debug_assert_eq!(constraint.ident.name, sym::Output);
683        constraint.ty().unwrap()
684    }
685
686    pub fn has_err(&self) -> Option<ErrorGuaranteed> {
687        self.args
688            .iter()
689            .find_map(|arg| {
690                let GenericArg::Type(ty) = arg else { return None };
691                let TyKind::Err(guar) = ty.kind else { return None };
692                Some(guar)
693            })
694            .or_else(|| {
695                self.constraints.iter().find_map(|constraint| {
696                    let TyKind::Err(guar) = constraint.ty()?.kind else { return None };
697                    Some(guar)
698                })
699            })
700    }
701
702    #[inline]
703    pub fn num_lifetime_params(&self) -> usize {
704        self.args.iter().filter(|arg| #[allow(non_exhaustive_omitted_patterns)] match arg {
    GenericArg::Lifetime(_) => true,
    _ => false,
}matches!(arg, GenericArg::Lifetime(_))).count()
705    }
706
707    #[inline]
708    pub fn has_lifetime_params(&self) -> bool {
709        self.args.iter().any(|arg| #[allow(non_exhaustive_omitted_patterns)] match arg {
    GenericArg::Lifetime(_) => true,
    _ => false,
}matches!(arg, GenericArg::Lifetime(_)))
710    }
711
712    #[inline]
713    /// This function returns the number of type and const generic params.
714    /// It should only be used for diagnostics.
715    pub fn num_generic_params(&self) -> usize {
716        self.args.iter().filter(|arg| !#[allow(non_exhaustive_omitted_patterns)] match arg {
    GenericArg::Lifetime(_) => true,
    _ => false,
}matches!(arg, GenericArg::Lifetime(_))).count()
717    }
718
719    /// The span encompassing the arguments and constraints[^1] inside the surrounding brackets.
720    ///
721    /// Returns `None` if the span is empty (i.e., no brackets) or dummy.
722    ///
723    /// [^1]: Unless of the form `-> Ty` (see [`GenericArgsParentheses`]).
724    pub fn span(&self) -> Option<Span> {
725        let span_ext = self.span_ext()?;
726        Some(span_ext.with_lo(span_ext.lo() + BytePos(1)).with_hi(span_ext.hi() - BytePos(1)))
727    }
728
729    /// Returns span encompassing arguments and their surrounding `<>` or `()`
730    pub fn span_ext(&self) -> Option<Span> {
731        Some(self.span_ext).filter(|span| !span.is_empty())
732    }
733
734    pub fn is_empty(&self) -> bool {
735        self.args.is_empty()
736    }
737}
738
739#[derive(#[automatically_derived]
impl ::core::marker::Copy for GenericArgsParentheses { }Copy, #[automatically_derived]
impl ::core::clone::Clone for GenericArgsParentheses {
    #[inline]
    fn clone(&self) -> GenericArgsParentheses { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for GenericArgsParentheses {
    #[inline]
    fn eq(&self, other: &GenericArgsParentheses) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for GenericArgsParentheses {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for GenericArgsParentheses {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                GenericArgsParentheses::No => "No",
                GenericArgsParentheses::ReturnTypeNotation =>
                    "ReturnTypeNotation",
                GenericArgsParentheses::ParenSugar => "ParenSugar",
            })
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            GenericArgsParentheses {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    GenericArgsParentheses::No => {}
                    GenericArgsParentheses::ReturnTypeNotation => {}
                    GenericArgsParentheses::ParenSugar => {}
                }
            }
        }
    };StableHash)]
740pub enum GenericArgsParentheses {
741    No,
742    /// Bounds for `feature(return_type_notation)`, like `T: Trait<method(..): Send>`,
743    /// where the args are explicitly elided with `..`
744    ReturnTypeNotation,
745    /// parenthesized function-family traits, like `T: Fn(u32) -> i32`
746    ParenSugar,
747}
748
749/// The modifiers on a trait bound.
750#[derive(#[automatically_derived]
impl ::core::marker::Copy for TraitBoundModifiers { }Copy, #[automatically_derived]
impl ::core::clone::Clone for TraitBoundModifiers {
    #[inline]
    fn clone(&self) -> TraitBoundModifiers {
        let _: ::core::clone::AssertParamIsClone<BoundConstness>;
        let _: ::core::clone::AssertParamIsClone<BoundPolarity>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for TraitBoundModifiers {
    #[inline]
    fn eq(&self, other: &TraitBoundModifiers) -> bool {
        self.constness == other.constness && self.polarity == other.polarity
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for TraitBoundModifiers {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<BoundConstness>;
        let _: ::core::cmp::AssertParamIsEq<BoundPolarity>;
    }
}Eq, #[automatically_derived]
impl ::core::hash::Hash for TraitBoundModifiers {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.constness, state);
        ::core::hash::Hash::hash(&self.polarity, state)
    }
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for TraitBoundModifiers {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "TraitBoundModifiers", "constness", &self.constness, "polarity",
            &&self.polarity)
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            TraitBoundModifiers {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    TraitBoundModifiers {
                        constness: ref __binding_0, polarity: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
751pub struct TraitBoundModifiers {
752    pub constness: BoundConstness,
753    pub polarity: BoundPolarity,
754}
755
756impl TraitBoundModifiers {
757    pub const NONE: Self =
758        TraitBoundModifiers { constness: BoundConstness::Never, polarity: BoundPolarity::Positive };
759}
760
761#[derive(#[automatically_derived]
impl<'hir> ::core::clone::Clone for GenericBound<'hir> {
    #[inline]
    fn clone(&self) -> GenericBound<'hir> {
        let _: ::core::clone::AssertParamIsClone<PolyTraitRef<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Lifetime>;
        let _:
                ::core::clone::AssertParamIsClone<&'hir [PreciseCapturingArg<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for GenericBound<'hir> { }Copy, #[automatically_derived]
impl<'hir> ::core::fmt::Debug for GenericBound<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            GenericBound::Trait(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Trait",
                    &__self_0),
            GenericBound::Outlives(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Outlives", &__self_0),
            GenericBound::Use(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Use",
                    __self_0, &__self_1),
        }
    }
}Debug, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            GenericBound<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    GenericBound::Trait(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    GenericBound::Outlives(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    GenericBound::Use(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
762pub enum GenericBound<'hir> {
763    Trait(PolyTraitRef<'hir>),
764    Outlives(&'hir Lifetime),
765    Use(&'hir [PreciseCapturingArg<'hir>], Span),
766}
767
768impl GenericBound<'_> {
769    pub fn trait_ref(&self) -> Option<&TraitRef<'_>> {
770        match self {
771            GenericBound::Trait(data) => Some(&data.trait_ref),
772            _ => None,
773        }
774    }
775
776    pub fn span(&self) -> Span {
777        match self {
778            GenericBound::Trait(t, ..) => t.span,
779            GenericBound::Outlives(l) => l.ident.span,
780            GenericBound::Use(_, span) => *span,
781        }
782    }
783}
784
785pub type GenericBounds<'hir> = &'hir [GenericBound<'hir>];
786
787#[derive(#[automatically_derived]
impl ::core::marker::Copy for MissingLifetimeKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for MissingLifetimeKind {
    #[inline]
    fn clone(&self) -> MissingLifetimeKind { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for MissingLifetimeKind {
    #[inline]
    fn eq(&self, other: &MissingLifetimeKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for MissingLifetimeKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for MissingLifetimeKind {
    #[inline]
    fn partial_cmp(&self, other: &MissingLifetimeKind)
        -> ::core::option::Option<::core::cmp::Ordering> {
        ::core::option::Option::Some(::core::cmp::Ord::cmp(self, other))
    }
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for MissingLifetimeKind {
    #[inline]
    fn cmp(&self, other: &MissingLifetimeKind) -> ::core::cmp::Ordering {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        ::core::cmp::Ord::cmp(&__self_discr, &__arg1_discr)
    }
}Ord, #[automatically_derived]
impl ::core::hash::Hash for MissingLifetimeKind {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            MissingLifetimeKind {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    MissingLifetimeKind::Underscore => {}
                    MissingLifetimeKind::Ampersand => {}
                    MissingLifetimeKind::Comma => {}
                    MissingLifetimeKind::Brackets => {}
                }
            }
        }
    };StableHash, #[automatically_derived]
impl ::core::fmt::Debug for MissingLifetimeKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                MissingLifetimeKind::Underscore => "Underscore",
                MissingLifetimeKind::Ampersand => "Ampersand",
                MissingLifetimeKind::Comma => "Comma",
                MissingLifetimeKind::Brackets => "Brackets",
            })
    }
}Debug)]
788pub enum MissingLifetimeKind {
789    /// An explicit `'_`.
790    Underscore,
791    /// An elided lifetime `&' ty`.
792    Ampersand,
793    /// An elided lifetime in brackets with written brackets.
794    Comma,
795    /// An elided lifetime with elided brackets.
796    Brackets,
797}
798
799#[derive(#[automatically_derived]
impl ::core::marker::Copy for LifetimeParamKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for LifetimeParamKind {
    #[inline]
    fn clone(&self) -> LifetimeParamKind {
        let _: ::core::clone::AssertParamIsClone<MissingLifetimeKind>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for LifetimeParamKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            LifetimeParamKind::Explicit =>
                ::core::fmt::Formatter::write_str(f, "Explicit"),
            LifetimeParamKind::Elided(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Elided",
                    &__self_0),
            LifetimeParamKind::Error =>
                ::core::fmt::Formatter::write_str(f, "Error"),
        }
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            LifetimeParamKind {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    LifetimeParamKind::Explicit => {}
                    LifetimeParamKind::Elided(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    LifetimeParamKind::Error => {}
                }
            }
        }
    };StableHash)]
800pub enum LifetimeParamKind {
801    // Indicates that the lifetime definition was explicitly declared (e.g., in
802    // `fn foo<'a>(x: &'a u8) -> &'a u8 { x }`).
803    Explicit,
804
805    // Indication that the lifetime was elided (e.g., in both cases in
806    // `fn foo(x: &u8) -> &'_ u8 { x }`).
807    Elided(MissingLifetimeKind),
808
809    // Indication that the lifetime name was somehow in error.
810    Error,
811}
812
813#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for GenericParamKind<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            GenericParamKind::Lifetime { kind: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "Lifetime", "kind", &__self_0),
            GenericParamKind::Type { default: __self_0, synthetic: __self_1 }
                =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f, "Type",
                    "default", __self_0, "synthetic", &__self_1),
            GenericParamKind::Const { ty: __self_0, default: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f, "Const",
                    "ty", __self_0, "default", &__self_1),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for GenericParamKind<'hir> {
    #[inline]
    fn clone(&self) -> GenericParamKind<'hir> {
        let _: ::core::clone::AssertParamIsClone<LifetimeParamKind>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Ty<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _:
                ::core::clone::AssertParamIsClone<Option<&'hir ConstArg<'hir>>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for GenericParamKind<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            GenericParamKind<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    GenericParamKind::Lifetime { kind: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    GenericParamKind::Type {
                        default: ref __binding_0, synthetic: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    GenericParamKind::Const {
                        ty: ref __binding_0, default: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
814pub enum GenericParamKind<'hir> {
815    /// A lifetime definition (e.g., `'a: 'b + 'c + 'd`).
816    Lifetime {
817        kind: LifetimeParamKind,
818    },
819    Type {
820        default: Option<&'hir Ty<'hir>>,
821        synthetic: bool,
822    },
823    Const {
824        ty: &'hir Ty<'hir>,
825        /// Optional default value for the const generic param
826        default: Option<&'hir ConstArg<'hir>>,
827    },
828}
829
830#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for GenericParam<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["hir_id", "def_id", "name", "span", "pure_wrt_drop", "kind",
                        "colon_span", "source"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.hir_id, &self.def_id, &self.name, &self.span,
                        &self.pure_wrt_drop, &self.kind, &self.colon_span,
                        &&self.source];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "GenericParam",
            names, values)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for GenericParam<'hir> {
    #[inline]
    fn clone(&self) -> GenericParam<'hir> {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<LocalDefId>;
        let _: ::core::clone::AssertParamIsClone<ParamName>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        let _: ::core::clone::AssertParamIsClone<GenericParamKind<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Option<Span>>;
        let _: ::core::clone::AssertParamIsClone<GenericParamSource>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for GenericParam<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            GenericParam<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    GenericParam {
                        hir_id: ref __binding_0,
                        def_id: ref __binding_1,
                        name: ref __binding_2,
                        span: ref __binding_3,
                        pure_wrt_drop: ref __binding_4,
                        kind: ref __binding_5,
                        colon_span: ref __binding_6,
                        source: ref __binding_7 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        { __binding_5.stable_hash(__hcx, __hasher); }
                        { __binding_6.stable_hash(__hcx, __hasher); }
                        { __binding_7.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
831pub struct GenericParam<'hir> {
832    #[stable_hash(ignore)]
833    pub hir_id: HirId,
834    pub def_id: LocalDefId,
835    pub name: ParamName,
836    pub span: Span,
837    pub pure_wrt_drop: bool,
838    pub kind: GenericParamKind<'hir>,
839    pub colon_span: Option<Span>,
840    pub source: GenericParamSource,
841}
842
843impl<'hir> GenericParam<'hir> {
844    /// Synthetic type-parameters are inserted after normal ones.
845    /// In order for normal parameters to be able to refer to synthetic ones,
846    /// scans them first.
847    pub fn is_impl_trait(&self) -> bool {
848        #[allow(non_exhaustive_omitted_patterns)] match self.kind {
    GenericParamKind::Type { synthetic: true, .. } => true,
    _ => false,
}matches!(self.kind, GenericParamKind::Type { synthetic: true, .. })
849    }
850
851    /// This can happen for `async fn`, e.g. `async fn f<'_>(&'_ self)`.
852    ///
853    /// See `lifetime_to_generic_param` in `rustc_ast_lowering` for more information.
854    pub fn is_elided_lifetime(&self) -> bool {
855        #[allow(non_exhaustive_omitted_patterns)] match self.kind {
    GenericParamKind::Lifetime { kind: LifetimeParamKind::Elided(_) } => true,
    _ => false,
}matches!(self.kind, GenericParamKind::Lifetime { kind: LifetimeParamKind::Elided(_) })
856    }
857
858    pub fn is_lifetime(&self) -> bool {
859        #[allow(non_exhaustive_omitted_patterns)] match self.kind {
    GenericParamKind::Lifetime { .. } => true,
    _ => false,
}matches!(self.kind, GenericParamKind::Lifetime { .. })
860    }
861}
862
863/// Records where the generic parameter originated from.
864///
865/// This can either be from an item's generics, in which case it's typically
866/// early-bound (but can be a late-bound lifetime in functions, for example),
867/// or from a `for<...>` binder, in which case it's late-bound (and notably,
868/// does not show up in the parent item's generics).
869#[derive(#[automatically_derived]
impl ::core::fmt::Debug for GenericParamSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                GenericParamSource::Generics => "Generics",
                GenericParamSource::Binder => "Binder",
            })
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for GenericParamSource {
    #[inline]
    fn clone(&self) -> GenericParamSource { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for GenericParamSource { }Copy, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            GenericParamSource {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    GenericParamSource::Generics => {}
                    GenericParamSource::Binder => {}
                }
            }
        }
    };StableHash)]
870pub enum GenericParamSource {
871    // Early or late-bound parameters defined on an item
872    Generics,
873    // Late-bound parameters defined via a `for<...>`
874    Binder,
875}
876
877#[derive(#[automatically_derived]
impl ::core::default::Default for GenericParamCount {
    #[inline]
    fn default() -> GenericParamCount {
        GenericParamCount {
            lifetimes: ::core::default::Default::default(),
            types: ::core::default::Default::default(),
            consts: ::core::default::Default::default(),
            infer: ::core::default::Default::default(),
        }
    }
}Default)]
878pub struct GenericParamCount {
879    pub lifetimes: usize,
880    pub types: usize,
881    pub consts: usize,
882    pub infer: usize,
883}
884
885/// Represents lifetimes and type parameters attached to a declaration
886/// of a function, enum, trait, etc.
887#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Generics<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "Generics",
            "params", &self.params, "predicates", &self.predicates,
            "has_where_clause_predicates", &self.has_where_clause_predicates,
            "where_clause_span", &self.where_clause_span, "span", &&self.span)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Generics<'hir> {
    #[inline]
    fn clone(&self) -> Generics<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir [GenericParam<'hir>]>;
        let _:
                ::core::clone::AssertParamIsClone<&'hir [WherePredicate<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for Generics<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Generics<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Generics {
                        params: ref __binding_0,
                        predicates: ref __binding_1,
                        has_where_clause_predicates: ref __binding_2,
                        where_clause_span: ref __binding_3,
                        span: ref __binding_4 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
888pub struct Generics<'hir> {
889    pub params: &'hir [GenericParam<'hir>],
890    pub predicates: &'hir [WherePredicate<'hir>],
891    pub has_where_clause_predicates: bool,
892    pub where_clause_span: Span,
893    pub span: Span,
894}
895
896impl<'hir> Generics<'hir> {
897    pub const fn empty() -> &'hir Generics<'hir> {
898        const NOPE: Generics<'_> = Generics {
899            params: &[],
900            predicates: &[],
901            has_where_clause_predicates: false,
902            where_clause_span: DUMMY_SP,
903            span: DUMMY_SP,
904        };
905        &NOPE
906    }
907
908    pub fn get_named(&self, name: Symbol) -> Option<&GenericParam<'hir>> {
909        self.params.iter().find(|&param| name == param.name.ident().name)
910    }
911
912    /// If there are generic parameters, return where to introduce a new one.
913    pub fn span_for_lifetime_suggestion(&self) -> Option<Span> {
914        if let Some(first) = self.params.first()
915            && self.span.contains(first.span)
916        {
917            // `fn foo<A>(t: impl Trait)`
918            //         ^ suggest `'a, ` here
919            Some(first.span.shrink_to_lo())
920        } else {
921            None
922        }
923    }
924
925    /// If there are generic parameters, return where to introduce a new one.
926    pub fn span_for_param_suggestion(&self) -> Option<Span> {
927        self.params.iter().any(|p| self.span.contains(p.span)).then(|| {
928            // `fn foo<A>(t: impl Trait)`
929            //          ^ suggest `, T: Trait` here
930            self.span.with_lo(self.span.hi() - BytePos(1)).shrink_to_lo()
931        })
932    }
933
934    /// `Span` where further predicates would be suggested, accounting for trailing commas, like
935    ///  in `fn foo<T>(t: T) where T: Foo,` so we don't suggest two trailing commas.
936    pub fn tail_span_for_predicate_suggestion(&self) -> Span {
937        let end = self.where_clause_span.shrink_to_hi();
938        if self.has_where_clause_predicates {
939            self.predicates
940                .iter()
941                .rfind(|&p| p.kind.in_where_clause())
942                .map_or(end, |p| p.span)
943                .shrink_to_hi()
944                .to(end)
945        } else {
946            end
947        }
948    }
949
950    pub fn add_where_or_trailing_comma(&self) -> &'static str {
951        if self.has_where_clause_predicates {
952            ","
953        } else if self.where_clause_span.is_empty() {
954            " where"
955        } else {
956            // No where clause predicates, but we have `where` token
957            ""
958        }
959    }
960
961    pub fn bounds_for_param(
962        &self,
963        param_def_id: LocalDefId,
964    ) -> impl Iterator<Item = &WhereBoundPredicate<'hir>> {
965        self.predicates.iter().filter_map(move |pred| match pred.kind {
966            WherePredicateKind::BoundPredicate(bp)
967                if bp.is_param_bound(param_def_id.to_def_id()) =>
968            {
969                Some(bp)
970            }
971            _ => None,
972        })
973    }
974
975    pub fn outlives_for_param(
976        &self,
977        param_def_id: LocalDefId,
978    ) -> impl Iterator<Item = &WhereRegionPredicate<'_>> {
979        self.predicates.iter().filter_map(move |pred| match pred.kind {
980            WherePredicateKind::RegionPredicate(rp) if rp.is_param_bound(param_def_id) => Some(rp),
981            _ => None,
982        })
983    }
984
985    /// Returns a suggestable empty span right after the "final" bound of the generic parameter.
986    ///
987    /// If that bound needs to be wrapped in parentheses to avoid ambiguity with
988    /// subsequent bounds, it also returns an empty span for an open parenthesis
989    /// as the second component.
990    ///
991    /// E.g., adding `+ 'static` after `Fn() -> dyn Future<Output = ()>` or
992    /// `Fn() -> &'static dyn Debug` requires parentheses:
993    /// `Fn() -> (dyn Future<Output = ()>) + 'static` and
994    /// `Fn() -> &'static (dyn Debug) + 'static`, respectively.
995    pub fn bounds_span_for_suggestions(
996        &self,
997        param_def_id: LocalDefId,
998    ) -> Option<(Span, Option<Span>)> {
999        self.bounds_for_param(param_def_id).flat_map(|bp| bp.bounds.iter().rev()).find_map(
1000            |bound| {
1001                let span_for_parentheses = if let Some(trait_ref) = bound.trait_ref()
1002                    && let [.., segment] = trait_ref.path.segments
1003                    && let Some(ret_ty) = segment.args().paren_sugar_output()
1004                    && let ret_ty = ret_ty.peel_refs()
1005                    && let TyKind::TraitObject(_, tagged_ptr) = ret_ty.kind
1006                    && let TraitObjectSyntax::Dyn = tagged_ptr.tag()
1007                    && ret_ty.span.can_be_used_for_suggestions()
1008                {
1009                    Some(ret_ty.span)
1010                } else {
1011                    None
1012                };
1013
1014                span_for_parentheses.map_or_else(
1015                    || {
1016                        // We include bounds that come from a `#[derive(_)]` but point at the user's
1017                        // code, as we use this method to get a span appropriate for suggestions.
1018                        let bs = bound.span();
1019                        // We use `from_expansion` instead of `can_be_used_for_suggestions` because
1020                        // the trait bound from imperfect derives do point at the type parameter,
1021                        // but expanded to a where clause, so we want to ignore those. This is only
1022                        // true for derive intrinsics.
1023                        bs.from_expansion().not().then(|| (bs.shrink_to_hi(), None))
1024                    },
1025                    |span| Some((span.shrink_to_hi(), Some(span.shrink_to_lo()))),
1026                )
1027            },
1028        )
1029    }
1030
1031    pub fn span_for_predicate_removal(&self, pos: usize) -> Span {
1032        let predicate = &self.predicates[pos];
1033        let span = predicate.span;
1034
1035        if !predicate.kind.in_where_clause() {
1036            // <T: ?Sized, U>
1037            //   ^^^^^^^^
1038            return span;
1039        }
1040
1041        // We need to find out which comma to remove.
1042        if pos < self.predicates.len() - 1 {
1043            let next_pred = &self.predicates[pos + 1];
1044            if next_pred.kind.in_where_clause() {
1045                // where T: ?Sized, Foo: Bar,
1046                //       ^^^^^^^^^^^
1047                return span.until(next_pred.span);
1048            }
1049        }
1050
1051        if pos > 0 {
1052            let prev_pred = &self.predicates[pos - 1];
1053            if prev_pred.kind.in_where_clause() {
1054                // where Foo: Bar, T: ?Sized,
1055                //               ^^^^^^^^^^^
1056                return prev_pred.span.shrink_to_hi().to(span);
1057            }
1058        }
1059
1060        // This is the only predicate in the where clause.
1061        // where T: ?Sized
1062        // ^^^^^^^^^^^^^^^
1063        self.where_clause_span
1064    }
1065
1066    pub fn span_for_bound_removal(&self, predicate_pos: usize, bound_pos: usize) -> Span {
1067        let predicate = &self.predicates[predicate_pos];
1068        let bounds = predicate.kind.bounds();
1069
1070        if bounds.len() == 1 {
1071            return self.span_for_predicate_removal(predicate_pos);
1072        }
1073
1074        let bound_span = bounds[bound_pos].span();
1075        if bound_pos < bounds.len() - 1 {
1076            // If there's another bound after the current bound
1077            // include the following '+' e.g.:
1078            //
1079            //  `T: Foo + CurrentBound + Bar`
1080            //            ^^^^^^^^^^^^^^^
1081            bound_span.to(bounds[bound_pos + 1].span().shrink_to_lo())
1082        } else {
1083            // If the current bound is the last bound
1084            // include the preceding '+' E.g.:
1085            //
1086            //  `T: Foo + Bar + CurrentBound`
1087            //               ^^^^^^^^^^^^^^^
1088            bound_span.with_lo(bounds[bound_pos - 1].span().hi())
1089        }
1090    }
1091
1092    /// Computes the span representing the removal of a generic parameter at `param_index`.
1093    ///
1094    /// This function identifies the correct slice of source code to delete so that the
1095    /// remaining generic list remains syntactically valid (handling commas and brackets).
1096    ///
1097    /// ### Examples
1098    ///
1099    /// 1. **With a following parameter:** (Includes the trailing comma)
1100    ///    - Input: `<T, U>` (index 0)
1101    ///    - Produces span for: `T, `
1102    ///
1103    /// 2. **With a previous parameter:** (Includes the leading comma and bounds)
1104    ///    - Input: `<T: Clone, U>` (index 1)
1105    ///    - Produces span for: `, U`
1106    ///
1107    /// 3. **The only parameter:** (Includes the angle brackets)
1108    ///    - Input: `<T>` (index 0)
1109    ///    - Produces span for: `<T>`
1110    ///
1111    /// 4. **Parameter with where-clause bounds:**
1112    ///    - Input: `fn foo<T, U>() where T: Copy` (index 0)
1113    ///    - Produces span for: `T, ` (The where-clause remains for other logic to handle).
1114    pub fn span_for_param_removal(&self, param_index: usize) -> Span {
1115        if param_index >= self.params.len() {
1116            return self.span.shrink_to_hi();
1117        }
1118
1119        let is_param_explicit = |par: &&GenericParam<'_>| match par.kind {
1120            GenericParamKind::Type { .. }
1121            | GenericParamKind::Const { .. }
1122            | GenericParamKind::Lifetime { kind: LifetimeParamKind::Explicit } => true,
1123            _ => false,
1124        };
1125
1126        // Find the span of the type parameter.
1127        if let Some(next) = self.params[param_index + 1..].iter().find(is_param_explicit) {
1128            self.params[param_index].span.until(next.span)
1129        } else if let Some(prev) = self.params[..param_index].iter().rfind(is_param_explicit) {
1130            let mut prev_span = prev.span;
1131            // Consider the span of the bounds with the previous generic parameter when there is.
1132            if let Some(prev_bounds_span) = self.span_for_param_bounds(prev) {
1133                prev_span = prev_span.to(prev_bounds_span);
1134            }
1135
1136            // Consider the span of the bounds with the current generic parameter when there is.
1137            prev_span.shrink_to_hi().to(
1138                if let Some(cur_bounds_span) = self.span_for_param_bounds(&self.params[param_index])
1139                {
1140                    cur_bounds_span
1141                } else {
1142                    self.params[param_index].span
1143                },
1144            )
1145        } else {
1146            // Remove also angle brackets <> when there is just ONE generic parameter.
1147            self.span
1148        }
1149    }
1150
1151    /// Returns the span of the `WherePredicate` associated with the given `GenericParam`, if any.
1152    ///
1153    /// This looks specifically for predicates in the `where` clause that were generated
1154    /// from the parameter definition (e.g., `T` in `where T: Bound`).
1155    ///
1156    /// ### Example
1157    ///
1158    /// - Input: `param` representing `T`
1159    /// - Context: `where T: Clone + Default, U: Copy`
1160    /// - Returns: Span of `T: Clone + Default`
1161    fn span_for_param_bounds(&self, param: &GenericParam<'hir>) -> Option<Span> {
1162        self.predicates
1163            .iter()
1164            .find(|pred| {
1165                if let WherePredicateKind::BoundPredicate(WhereBoundPredicate {
1166                    origin: PredicateOrigin::GenericParam,
1167                    bounded_ty,
1168                    ..
1169                }) = pred.kind
1170                {
1171                    bounded_ty.span == param.span
1172                } else {
1173                    false
1174                }
1175            })
1176            .map(|pred| pred.span)
1177    }
1178}
1179
1180/// A single predicate in a where-clause.
1181#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for WherePredicate<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f,
            "WherePredicate", "hir_id", &self.hir_id, "span", &self.span,
            "kind", &&self.kind)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for WherePredicate<'hir> {
    #[inline]
    fn clone(&self) -> WherePredicate<'hir> {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _:
                ::core::clone::AssertParamIsClone<&'hir WherePredicateKind<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for WherePredicate<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            WherePredicate<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    WherePredicate {
                        hir_id: ref __binding_0,
                        span: ref __binding_1,
                        kind: ref __binding_2 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
1182pub struct WherePredicate<'hir> {
1183    #[stable_hash(ignore)]
1184    pub hir_id: HirId,
1185    pub span: Span,
1186    pub kind: &'hir WherePredicateKind<'hir>,
1187}
1188
1189/// The kind of a single predicate in a where-clause.
1190#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for WherePredicateKind<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            WherePredicateKind::BoundPredicate(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "BoundPredicate", &__self_0),
            WherePredicateKind::RegionPredicate(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "RegionPredicate", &__self_0),
            WherePredicateKind::EqPredicate(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "EqPredicate", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for WherePredicateKind<'hir> {
    #[inline]
    fn clone(&self) -> WherePredicateKind<'hir> {
        let _: ::core::clone::AssertParamIsClone<WhereBoundPredicate<'hir>>;
        let _: ::core::clone::AssertParamIsClone<WhereRegionPredicate<'hir>>;
        let _: ::core::clone::AssertParamIsClone<WhereEqPredicate<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for WherePredicateKind<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            WherePredicateKind<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    WherePredicateKind::BoundPredicate(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    WherePredicateKind::RegionPredicate(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    WherePredicateKind::EqPredicate(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
1191pub enum WherePredicateKind<'hir> {
1192    /// A type bound (e.g., `for<'c> Foo: Send + Clone + 'c`).
1193    BoundPredicate(WhereBoundPredicate<'hir>),
1194    /// A lifetime predicate (e.g., `'a: 'b + 'c`).
1195    RegionPredicate(WhereRegionPredicate<'hir>),
1196    /// An equality predicate (unsupported).
1197    EqPredicate(WhereEqPredicate<'hir>),
1198}
1199
1200impl<'hir> WherePredicateKind<'hir> {
1201    pub fn in_where_clause(&self) -> bool {
1202        match self {
1203            WherePredicateKind::BoundPredicate(p) => p.origin == PredicateOrigin::WhereClause,
1204            WherePredicateKind::RegionPredicate(p) => p.in_where_clause,
1205            WherePredicateKind::EqPredicate(_) => false,
1206        }
1207    }
1208
1209    pub fn bounds(&self) -> GenericBounds<'hir> {
1210        match self {
1211            WherePredicateKind::BoundPredicate(p) => p.bounds,
1212            WherePredicateKind::RegionPredicate(p) => p.bounds,
1213            WherePredicateKind::EqPredicate(_) => &[],
1214        }
1215    }
1216}
1217
1218#[derive(#[automatically_derived]
impl ::core::marker::Copy for PredicateOrigin { }Copy, #[automatically_derived]
impl ::core::clone::Clone for PredicateOrigin {
    #[inline]
    fn clone(&self) -> PredicateOrigin { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for PredicateOrigin {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                PredicateOrigin::WhereClause => "WhereClause",
                PredicateOrigin::GenericParam => "GenericParam",
                PredicateOrigin::ImplTrait => "ImplTrait",
            })
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            PredicateOrigin {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    PredicateOrigin::WhereClause => {}
                    PredicateOrigin::GenericParam => {}
                    PredicateOrigin::ImplTrait => {}
                }
            }
        }
    };StableHash, #[automatically_derived]
impl ::core::cmp::PartialEq for PredicateOrigin {
    #[inline]
    fn eq(&self, other: &PredicateOrigin) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for PredicateOrigin {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq)]
1219pub enum PredicateOrigin {
1220    WhereClause,
1221    GenericParam,
1222    ImplTrait,
1223}
1224
1225/// A type bound (e.g., `for<'c> Foo: Send + Clone + 'c`).
1226#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for WhereBoundPredicate<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field4_finish(f,
            "WhereBoundPredicate", "origin", &self.origin,
            "bound_generic_params", &self.bound_generic_params, "bounded_ty",
            &self.bounded_ty, "bounds", &&self.bounds)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for WhereBoundPredicate<'hir> {
    #[inline]
    fn clone(&self) -> WhereBoundPredicate<'hir> {
        let _: ::core::clone::AssertParamIsClone<PredicateOrigin>;
        let _: ::core::clone::AssertParamIsClone<&'hir [GenericParam<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<GenericBounds<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for WhereBoundPredicate<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            WhereBoundPredicate<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    WhereBoundPredicate {
                        origin: ref __binding_0,
                        bound_generic_params: ref __binding_1,
                        bounded_ty: ref __binding_2,
                        bounds: ref __binding_3 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
1227pub struct WhereBoundPredicate<'hir> {
1228    /// Origin of the predicate.
1229    pub origin: PredicateOrigin,
1230    /// Any generics from a `for` binding.
1231    pub bound_generic_params: &'hir [GenericParam<'hir>],
1232    /// The type being bounded.
1233    pub bounded_ty: &'hir Ty<'hir>,
1234    /// Trait and lifetime bounds (e.g., `Clone + Send + 'static`).
1235    pub bounds: GenericBounds<'hir>,
1236}
1237
1238impl<'hir> WhereBoundPredicate<'hir> {
1239    /// Returns `true` if `param_def_id` matches the `bounded_ty` of this predicate.
1240    pub fn is_param_bound(&self, param_def_id: DefId) -> bool {
1241        self.bounded_ty.as_generic_param().is_some_and(|(def_id, _)| def_id == param_def_id)
1242    }
1243}
1244
1245/// A lifetime predicate (e.g., `'a: 'b + 'c`).
1246#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for WhereRegionPredicate<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f,
            "WhereRegionPredicate", "in_where_clause", &self.in_where_clause,
            "lifetime", &self.lifetime, "bounds", &&self.bounds)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for WhereRegionPredicate<'hir> {
    #[inline]
    fn clone(&self) -> WhereRegionPredicate<'hir> {
        let _: ::core::clone::AssertParamIsClone<bool>;
        let _: ::core::clone::AssertParamIsClone<&'hir Lifetime>;
        let _: ::core::clone::AssertParamIsClone<GenericBounds<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for WhereRegionPredicate<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            WhereRegionPredicate<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    WhereRegionPredicate {
                        in_where_clause: ref __binding_0,
                        lifetime: ref __binding_1,
                        bounds: ref __binding_2 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
1247pub struct WhereRegionPredicate<'hir> {
1248    pub in_where_clause: bool,
1249    pub lifetime: &'hir Lifetime,
1250    pub bounds: GenericBounds<'hir>,
1251}
1252
1253impl<'hir> WhereRegionPredicate<'hir> {
1254    /// Returns `true` if `param_def_id` matches the `lifetime` of this predicate.
1255    fn is_param_bound(&self, param_def_id: LocalDefId) -> bool {
1256        self.lifetime.kind == LifetimeKind::Param(param_def_id)
1257    }
1258}
1259
1260/// An equality predicate (e.g., `T = int`); currently unsupported.
1261#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for WhereEqPredicate<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "WhereEqPredicate", "lhs_ty", &self.lhs_ty, "rhs_ty",
            &&self.rhs_ty)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for WhereEqPredicate<'hir> {
    #[inline]
    fn clone(&self) -> WhereEqPredicate<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for WhereEqPredicate<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            WhereEqPredicate<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    WhereEqPredicate {
                        lhs_ty: ref __binding_0, rhs_ty: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
1262pub struct WhereEqPredicate<'hir> {
1263    pub lhs_ty: &'hir Ty<'hir>,
1264    pub rhs_ty: &'hir Ty<'hir>,
1265}
1266
1267/// HIR node coupled with its parent's id in the same HIR owner.
1268///
1269/// The parent is trash when the node is a HIR owner.
1270#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for ParentedNode<'tcx> {
    #[inline]
    fn clone(&self) -> ParentedNode<'tcx> {
        let _: ::core::clone::AssertParamIsClone<ItemLocalId>;
        let _: ::core::clone::AssertParamIsClone<Node<'tcx>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::marker::Copy for ParentedNode<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for ParentedNode<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "ParentedNode",
            "parent", &self.parent, "node", &&self.node)
    }
}Debug)]
1271pub struct ParentedNode<'tcx> {
1272    pub parent: ItemLocalId,
1273    pub node: Node<'tcx>,
1274}
1275
1276/// Arguments passed to an attribute macro.
1277#[derive(#[automatically_derived]
impl ::core::clone::Clone for AttrArgs {
    #[inline]
    fn clone(&self) -> AttrArgs {
        match self {
            AttrArgs::Empty => AttrArgs::Empty,
            AttrArgs::Delimited(__self_0) =>
                AttrArgs::Delimited(::core::clone::Clone::clone(__self_0)),
            AttrArgs::Eq { eq_span: __self_0, expr: __self_1 } =>
                AttrArgs::Eq {
                    eq_span: ::core::clone::Clone::clone(__self_0),
                    expr: ::core::clone::Clone::clone(__self_1),
                },
        }
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for AttrArgs {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            AttrArgs::Empty => ::core::fmt::Formatter::write_str(f, "Empty"),
            AttrArgs::Delimited(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Delimited", &__self_0),
            AttrArgs::Eq { eq_span: __self_0, expr: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f, "Eq",
                    "eq_span", __self_0, "expr", &__self_1),
        }
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for AttrArgs {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    AttrArgs::Empty => {}
                    AttrArgs::Delimited(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    AttrArgs::Eq {
                        eq_span: ref __binding_0, expr: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for AttrArgs {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        AttrArgs::Empty => { 0usize }
                        AttrArgs::Delimited(ref __binding_0) => { 1usize }
                        AttrArgs::Eq {
                            eq_span: ref __binding_0, expr: ref __binding_1 } => {
                            2usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    AttrArgs::Empty => {}
                    AttrArgs::Delimited(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    AttrArgs::Eq {
                        eq_span: ref __binding_0, expr: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for AttrArgs {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { AttrArgs::Empty }
                    1usize => {
                        AttrArgs::Delimited(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    2usize => {
                        AttrArgs::Eq {
                            eq_span: ::rustc_serialize::Decodable::decode(__decoder),
                            expr: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `AttrArgs`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable)]
1278pub enum AttrArgs {
1279    /// No arguments: `#[attr]`.
1280    Empty,
1281    /// Delimited arguments: `#[attr()/[]/{}]`.
1282    Delimited(DelimArgs),
1283    /// Arguments of a key-value attribute: `#[attr = "value"]`.
1284    Eq {
1285        /// Span of the `=` token.
1286        eq_span: Span,
1287        /// The "value".
1288        expr: MetaItemLit,
1289    },
1290}
1291
1292#[derive(#[automatically_derived]
impl ::core::clone::Clone for AttrPath {
    #[inline]
    fn clone(&self) -> AttrPath {
        AttrPath {
            segments: ::core::clone::Clone::clone(&self.segments),
            span: ::core::clone::Clone::clone(&self.span),
        }
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for AttrPath {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "AttrPath",
            "segments", &self.segments, "span", &&self.span)
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for AttrPath {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    AttrPath { segments: ref __binding_0, span: ref __binding_1
                        } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for AttrPath {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    AttrPath { segments: ref __binding_0, span: ref __binding_1
                        } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for AttrPath {
            fn decode(__decoder: &mut __D) -> Self {
                AttrPath {
                    segments: ::rustc_serialize::Decodable::decode(__decoder),
                    span: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable)]
1293pub struct AttrPath {
1294    pub segments: Box<[Symbol]>,
1295    pub span: Span,
1296}
1297
1298impl IntoDiagArg for AttrPath {
1299    fn into_diag_arg(self, path: &mut Option<std::path::PathBuf>) -> DiagArgValue {
1300        self.to_string().into_diag_arg(path)
1301    }
1302}
1303
1304impl AttrPath {
1305    pub fn from_ast(path: &ast::Path, lower_span: impl Copy + Fn(Span) -> Span) -> Self {
1306        AttrPath {
1307            segments: path
1308                .segments
1309                .iter()
1310                .map(|i| i.ident.name)
1311                .collect::<Vec<_>>()
1312                .into_boxed_slice(),
1313            span: lower_span(path.span),
1314        }
1315    }
1316}
1317
1318impl fmt::Display for AttrPath {
1319    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1320        f.write_fmt(format_args!("{0}",
        join_path_idents(self.segments.iter().map(|i|
                    Ident { name: *i, span: DUMMY_SP }))))write!(
1321            f,
1322            "{}",
1323            join_path_idents(self.segments.iter().map(|i| Ident { name: *i, span: DUMMY_SP }))
1324        )
1325    }
1326}
1327
1328#[derive(#[automatically_derived]
impl ::core::clone::Clone for AttrItem {
    #[inline]
    fn clone(&self) -> AttrItem {
        AttrItem {
            path: ::core::clone::Clone::clone(&self.path),
            args: ::core::clone::Clone::clone(&self.args),
            id: ::core::clone::Clone::clone(&self.id),
            style: ::core::clone::Clone::clone(&self.style),
            span: ::core::clone::Clone::clone(&self.span),
        }
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for AttrItem {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "AttrItem",
            "path", &self.path, "args", &self.args, "id", &self.id, "style",
            &self.style, "span", &&self.span)
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for AttrItem {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    AttrItem {
                        path: ref __binding_0,
                        args: ref __binding_1,
                        id: ref __binding_2,
                        style: ref __binding_3,
                        span: ref __binding_4 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for AttrItem {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    AttrItem {
                        path: ref __binding_0,
                        args: ref __binding_1,
                        id: ref __binding_2,
                        style: ref __binding_3,
                        span: ref __binding_4 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_3,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_4,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for AttrItem {
            fn decode(__decoder: &mut __D) -> Self {
                AttrItem {
                    path: ::rustc_serialize::Decodable::decode(__decoder),
                    args: ::rustc_serialize::Decodable::decode(__decoder),
                    id: ::rustc_serialize::Decodable::decode(__decoder),
                    style: ::rustc_serialize::Decodable::decode(__decoder),
                    span: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable)]
1329pub struct AttrItem {
1330    // Not lowered to hir::Path because we have no NodeId to resolve to.
1331    pub path: AttrPath,
1332    pub args: AttrArgs,
1333    pub id: HashIgnoredAttrId,
1334    /// Denotes if the attribute decorates the following construct (outer)
1335    /// or the construct this attribute is contained within (inner).
1336    pub style: AttrStyle,
1337    /// Span of the entire attribute
1338    pub span: Span,
1339}
1340
1341/// The derived implementation of [`StableHash`] on [`Attribute`]s shouldn't hash
1342/// [`AttrId`]s. By wrapping them in this, we make sure we never do.
1343#[derive(#[automatically_derived]
impl ::core::marker::Copy for HashIgnoredAttrId { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for HashIgnoredAttrId {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f,
            "HashIgnoredAttrId", "attr_id", &&self.attr_id)
    }
}Debug, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for HashIgnoredAttrId {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    HashIgnoredAttrId { attr_id: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for HashIgnoredAttrId {
            fn decode(__decoder: &mut __D) -> Self {
                HashIgnoredAttrId {
                    attr_id: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable, #[automatically_derived]
impl ::core::clone::Clone for HashIgnoredAttrId {
    #[inline]
    fn clone(&self) -> HashIgnoredAttrId {
        let _: ::core::clone::AssertParamIsClone<AttrId>;
        *self
    }
}Clone)]
1344pub struct HashIgnoredAttrId {
1345    pub attr_id: AttrId,
1346}
1347
1348/// Many functions on this type have their documentation in the [`AttributeExt`] trait,
1349/// since they defer their implementation directly to that trait.
1350#[derive(#[automatically_derived]
impl ::core::clone::Clone for Attribute {
    #[inline]
    fn clone(&self) -> Attribute {
        match self {
            Attribute::Parsed(__self_0) =>
                Attribute::Parsed(::core::clone::Clone::clone(__self_0)),
            Attribute::Unparsed(__self_0) =>
                Attribute::Unparsed(::core::clone::Clone::clone(__self_0)),
        }
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for Attribute {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Attribute::Parsed(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Parsed",
                    &__self_0),
            Attribute::Unparsed(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Unparsed", &__self_0),
        }
    }
}Debug, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for Attribute {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        Attribute::Parsed(ref __binding_0) => { 0usize }
                        Attribute::Unparsed(ref __binding_0) => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    Attribute::Parsed(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    Attribute::Unparsed(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for Attribute {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        Attribute::Parsed(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => {
                        Attribute::Unparsed(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `Attribute`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for Attribute {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    Attribute::Parsed(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Attribute::Unparsed(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
1351pub enum Attribute {
1352    /// A parsed built-in attribute.
1353    ///
1354    /// Each attribute has a span connected to it. However, you must be somewhat careful using it.
1355    /// That's because sometimes we merge multiple attributes together, like when an item has
1356    /// multiple `repr` attributes. In this case the span might not be very useful.
1357    Parsed(AttributeKind),
1358
1359    /// An attribute that could not be parsed, out of a token-like representation.
1360    /// This is the case for custom tool attributes.
1361    Unparsed(Box<AttrItem>),
1362}
1363
1364impl Attribute {
1365    pub fn get_normal_item(&self) -> &AttrItem {
1366        match &self {
1367            Attribute::Unparsed(normal) => &normal,
1368            _ => { ::core::panicking::panic_fmt(format_args!("unexpected parsed attribute")); }panic!("unexpected parsed attribute"),
1369        }
1370    }
1371
1372    pub fn unwrap_normal_item(self) -> AttrItem {
1373        match self {
1374            Attribute::Unparsed(normal) => *normal,
1375            _ => { ::core::panicking::panic_fmt(format_args!("unexpected parsed attribute")); }panic!("unexpected parsed attribute"),
1376        }
1377    }
1378
1379    pub fn value_lit(&self) -> Option<&MetaItemLit> {
1380        match &self {
1381            Attribute::Unparsed(n) => match n.as_ref() {
1382                AttrItem { args: AttrArgs::Eq { eq_span: _, expr }, .. } => Some(expr),
1383                _ => None,
1384            },
1385            _ => None,
1386        }
1387    }
1388
1389    pub fn is_parsed_attr(&self) -> bool {
1390        match self {
1391            Attribute::Parsed(_) => true,
1392            Attribute::Unparsed(_) => false,
1393        }
1394    }
1395
1396    pub fn is_prefix_attr_for_suggestions(&self) -> bool {
1397        match self {
1398            Attribute::Unparsed(attr) => attr.span.desugaring_kind().is_none(),
1399            // Other parsed attributes that can appear on expressions originate from source and
1400            // should make suggestions treat the expression like a prefixed form.
1401            Attribute::Parsed(_) => true,
1402        }
1403    }
1404}
1405
1406impl AttributeExt for Attribute {
1407    #[inline]
1408    fn id(&self) -> AttrId {
1409        match &self {
1410            Attribute::Unparsed(u) => u.id.attr_id,
1411            _ => ::core::panicking::panic("explicit panic")panic!(),
1412        }
1413    }
1414
1415    #[inline]
1416    fn meta_item_list(&self) -> Option<ThinVec<ast::MetaItemInner>> {
1417        match &self {
1418            Attribute::Unparsed(n) => match n.as_ref() {
1419                AttrItem { args: AttrArgs::Delimited(d), .. } => {
1420                    ast::MetaItemKind::list_from_tokens(d.tokens.clone())
1421                }
1422                _ => None,
1423            },
1424            _ => None,
1425        }
1426    }
1427
1428    #[inline]
1429    fn value_str(&self) -> Option<Symbol> {
1430        self.value_lit().and_then(|x| x.value_as_str())
1431    }
1432
1433    #[inline]
1434    fn value_span(&self) -> Option<Span> {
1435        self.value_lit().map(|i| i.span)
1436    }
1437
1438    /// For a single-segment attribute, returns its name; otherwise, returns `None`.
1439    #[inline]
1440    fn name(&self) -> Option<Symbol> {
1441        match &self {
1442            Attribute::Unparsed(n) => {
1443                if let [ident] = n.path.segments.as_ref() {
1444                    Some(*ident)
1445                } else {
1446                    None
1447                }
1448            }
1449            _ => None,
1450        }
1451    }
1452
1453    #[inline]
1454    fn path_matches(&self, name: &[Symbol]) -> bool {
1455        match &self {
1456            Attribute::Unparsed(n) => n.path.segments.iter().eq(name),
1457            _ => false,
1458        }
1459    }
1460
1461    #[inline]
1462    fn is_doc_comment(&self) -> Option<Span> {
1463        if let Attribute::Parsed(AttributeKind::DocComment { span, .. }) = self {
1464            Some(*span)
1465        } else {
1466            None
1467        }
1468    }
1469
1470    #[inline]
1471    fn span(&self) -> Span {
1472        match &self {
1473            Attribute::Unparsed(u) => u.span,
1474            // FIXME: should not be needed anymore when all attrs are parsed
1475            Attribute::Parsed(AttributeKind::DocComment { span, .. }) => *span,
1476            Attribute::Parsed(AttributeKind::Deprecated { span, .. }) => *span,
1477            Attribute::Parsed(AttributeKind::CfgTrace(cfgs)) => cfgs[0].1,
1478            a => {
    ::core::panicking::panic_fmt(format_args!("can\'t get the span of an arbitrary parsed attribute: {0:?}",
            a));
}panic!("can't get the span of an arbitrary parsed attribute: {a:?}"),
1479        }
1480    }
1481
1482    #[inline]
1483    fn is_word(&self) -> bool {
1484        match &self {
1485            Attribute::Unparsed(n) => {
1486                #[allow(non_exhaustive_omitted_patterns)] match n.args {
    AttrArgs::Empty => true,
    _ => false,
}matches!(n.args, AttrArgs::Empty)
1487            }
1488            _ => false,
1489        }
1490    }
1491
1492    #[inline]
1493    fn symbol_path(&self) -> Option<SmallVec<[Symbol; 1]>> {
1494        match &self {
1495            Attribute::Unparsed(n) => Some(n.path.segments.iter().copied().collect()),
1496            _ => None,
1497        }
1498    }
1499
1500    fn path_span(&self) -> Option<Span> {
1501        match &self {
1502            Attribute::Unparsed(attr) => Some(attr.path.span),
1503            Attribute::Parsed(_) => None,
1504        }
1505    }
1506
1507    #[inline]
1508    fn doc_str(&self) -> Option<Symbol> {
1509        match &self {
1510            Attribute::Parsed(AttributeKind::DocComment { comment, .. }) => Some(*comment),
1511            _ => None,
1512        }
1513    }
1514
1515    fn is_automatically_derived_attr(&self) -> bool {
1516        #[allow(non_exhaustive_omitted_patterns)] match self {
    Attribute::Parsed(AttributeKind::AutomaticallyDerived) => true,
    _ => false,
}matches!(self, Attribute::Parsed(AttributeKind::AutomaticallyDerived))
1517    }
1518
1519    #[inline]
1520    fn doc_str_and_fragment_kind(&self) -> Option<(Symbol, DocFragmentKind)> {
1521        match &self {
1522            Attribute::Parsed(AttributeKind::DocComment { kind, comment, .. }) => {
1523                Some((*comment, *kind))
1524            }
1525            _ => None,
1526        }
1527    }
1528
1529    fn doc_resolution_scope(&self) -> Option<AttrStyle> {
1530        match self {
1531            Attribute::Parsed(AttributeKind::DocComment { style, .. }) => Some(*style),
1532            Attribute::Unparsed(attr) if self.has_name(sym::doc) && self.value_str().is_some() => {
1533                Some(attr.style)
1534            }
1535            _ => None,
1536        }
1537    }
1538
1539    fn is_proc_macro_attr(&self) -> bool {
1540        #[allow(non_exhaustive_omitted_patterns)] match self {
    Attribute::Parsed(AttributeKind::ProcMacro |
        AttributeKind::ProcMacroAttribute | AttributeKind::ProcMacroDerive {
        .. }) => true,
    _ => false,
}matches!(
1541            self,
1542            Attribute::Parsed(
1543                AttributeKind::ProcMacro
1544                    | AttributeKind::ProcMacroAttribute
1545                    | AttributeKind::ProcMacroDerive { .. }
1546            )
1547        )
1548    }
1549
1550    fn is_doc_hidden(&self) -> bool {
1551        #[allow(non_exhaustive_omitted_patterns)] match self {
    Attribute::Parsed(AttributeKind::Doc(d)) if d.hidden.is_some() => true,
    _ => false,
}matches!(self, Attribute::Parsed(AttributeKind::Doc(d)) if d.hidden.is_some())
1552    }
1553
1554    fn is_doc_keyword_or_attribute(&self) -> bool {
1555        #[allow(non_exhaustive_omitted_patterns)] match self {
    Attribute::Parsed(AttributeKind::Doc(d)) if
        d.attribute.is_some() || d.keyword.is_some() => true,
    _ => false,
}matches!(self, Attribute::Parsed(AttributeKind::Doc(d)) if d.attribute.is_some() || d.keyword.is_some())
1556    }
1557
1558    fn is_rustc_doc_primitive(&self) -> bool {
1559        #[allow(non_exhaustive_omitted_patterns)] match self {
    Attribute::Parsed(AttributeKind::RustcDocPrimitive(..)) => true,
    _ => false,
}matches!(self, Attribute::Parsed(AttributeKind::RustcDocPrimitive(..)))
1560    }
1561}
1562
1563// FIXME(fn_delegation): use function delegation instead of manually forwarding
1564impl Attribute {
1565    #[inline]
1566    pub fn id(&self) -> AttrId {
1567        AttributeExt::id(self)
1568    }
1569
1570    #[inline]
1571    pub fn name(&self) -> Option<Symbol> {
1572        AttributeExt::name(self)
1573    }
1574
1575    #[inline]
1576    pub fn meta_item_list(&self) -> Option<ThinVec<MetaItemInner>> {
1577        AttributeExt::meta_item_list(self)
1578    }
1579
1580    #[inline]
1581    pub fn value_str(&self) -> Option<Symbol> {
1582        AttributeExt::value_str(self)
1583    }
1584
1585    #[inline]
1586    pub fn value_span(&self) -> Option<Span> {
1587        AttributeExt::value_span(self)
1588    }
1589
1590    #[inline]
1591    pub fn path_matches(&self, name: &[Symbol]) -> bool {
1592        AttributeExt::path_matches(self, name)
1593    }
1594
1595    #[inline]
1596    pub fn is_doc_comment(&self) -> Option<Span> {
1597        AttributeExt::is_doc_comment(self)
1598    }
1599
1600    #[inline]
1601    pub fn has_name(&self, name: Symbol) -> bool {
1602        AttributeExt::has_name(self, name)
1603    }
1604
1605    #[inline]
1606    pub fn has_any_name(&self, names: &[Symbol]) -> bool {
1607        AttributeExt::has_any_name(self, names)
1608    }
1609
1610    #[inline]
1611    pub fn span(&self) -> Span {
1612        AttributeExt::span(self)
1613    }
1614
1615    #[inline]
1616    pub fn is_word(&self) -> bool {
1617        AttributeExt::is_word(self)
1618    }
1619
1620    #[inline]
1621    pub fn path(&self) -> SmallVec<[Symbol; 1]> {
1622        AttributeExt::path(self)
1623    }
1624
1625    #[inline]
1626    pub fn doc_str(&self) -> Option<Symbol> {
1627        AttributeExt::doc_str(self)
1628    }
1629
1630    #[inline]
1631    pub fn is_proc_macro_attr(&self) -> bool {
1632        AttributeExt::is_proc_macro_attr(self)
1633    }
1634
1635    #[inline]
1636    pub fn doc_str_and_fragment_kind(&self) -> Option<(Symbol, DocFragmentKind)> {
1637        AttributeExt::doc_str_and_fragment_kind(self)
1638    }
1639}
1640
1641/// Attributes owned by a HIR owner.
1642#[derive(#[automatically_derived]
impl<'tcx> ::core::fmt::Debug for AttributeMap<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "AttributeMap",
            "map", &self.map, "define_opaque", &self.define_opaque,
            "opt_hash", &&self.opt_hash)
    }
}Debug)]
1643pub struct AttributeMap<'tcx> {
1644    pub map: SortedMap<ItemLocalId, &'tcx [Attribute]>,
1645    /// Preprocessed `#[define_opaque]` attribute.
1646    pub define_opaque: Option<&'tcx [(Span, LocalDefId)]>,
1647    // Only present when the crate hash is needed.
1648    pub opt_hash: Option<Fingerprint>,
1649}
1650
1651impl<'tcx> AttributeMap<'tcx> {
1652    pub const EMPTY: &'static AttributeMap<'static> = &AttributeMap {
1653        map: SortedMap::new(),
1654        opt_hash: Some(Fingerprint::ZERO),
1655        define_opaque: None,
1656    };
1657
1658    #[inline]
1659    pub fn get(&self, id: ItemLocalId) -> &'tcx [Attribute] {
1660        self.map.get(&id).copied().unwrap_or(&[])
1661    }
1662}
1663
1664/// Map of all HIR nodes inside the current owner.
1665/// These nodes are mapped by `ItemLocalId` alongside the index of their parent node.
1666/// The HIR tree, including bodies, is pre-hashed.
1667pub struct OwnerNodes<'tcx> {
1668    /// Pre-computed hash of the full HIR. Used in the crate hash. Only present
1669    /// when incr. comp. is enabled.
1670    pub opt_hash_including_bodies: Option<Fingerprint>,
1671    /// Full HIR for the current owner.
1672    // The zeroth node's parent should never be accessed: the owner's parent is computed by the
1673    // hir_owner_parent query. It is set to `ItemLocalId::INVALID` to force an ICE if accidentally
1674    // used.
1675    pub nodes: IndexVec<ItemLocalId, ParentedNode<'tcx>>,
1676    /// Content of local bodies.
1677    pub bodies: SortedMap<ItemLocalId, &'tcx Body<'tcx>>,
1678}
1679
1680impl<'tcx> OwnerNodes<'tcx> {
1681    pub fn node(&self) -> OwnerNode<'tcx> {
1682        // Indexing must ensure it is an OwnerNode.
1683        self.nodes[ItemLocalId::ZERO].node.as_owner().unwrap()
1684    }
1685
1686    /// Return an instance of `OwnerNodes` suitable for definitions that have no corresponding AST.
1687    pub fn synthetic() -> OwnerNodes<'tcx> {
1688        OwnerNodes {
1689            // There is no reason to bother computing a hash for a synthetic body.
1690            // Just use a constant value.
1691            opt_hash_including_bodies: Some(Fingerprint::ZERO),
1692            nodes: IndexVec::from_elem_n(
1693                ParentedNode { parent: ItemLocalId::INVALID, node: OwnerNode::Synthetic.into() },
1694                1,
1695            ),
1696            bodies: SortedMap::new(),
1697        }
1698    }
1699}
1700
1701impl fmt::Debug for OwnerNodes<'_> {
1702    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1703        f.debug_struct("OwnerNodes")
1704            // Do not print all the pointers to all the nodes, as it would be unreadable.
1705            .field("node", &self.nodes[ItemLocalId::ZERO])
1706            .field(
1707                "parents",
1708                &fmt::from_fn(|f| {
1709                    f.debug_list()
1710                        .entries(self.nodes.iter_enumerated().map(|(id, parented_node)| {
1711                            fmt::from_fn(move |f| f.write_fmt(format_args!("({1:?}, {0:?})", parented_node.parent, id))write!(f, "({id:?}, {:?})", parented_node.parent))
1712                        }))
1713                        .finish()
1714                }),
1715            )
1716            .field("bodies", &self.bodies)
1717            .field("opt_hash_including_bodies", &self.opt_hash_including_bodies)
1718            .finish()
1719    }
1720}
1721
1722/// Full information resulting from lowering an AST node.
1723#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for OwnerInfo<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "OwnerInfo",
            "nodes", &self.nodes, "parenting", &self.parenting, "attrs",
            &self.attrs, "trait_map", &self.trait_map, "delayed_lints",
            &&self.delayed_lints)
    }
}Debug, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            OwnerInfo<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    OwnerInfo {
                        nodes: ref __binding_0,
                        parenting: ref __binding_1,
                        attrs: ref __binding_2,
                        trait_map: ref __binding_3,
                        delayed_lints: ref __binding_4 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        {}
                    }
                }
            }
        }
    };StableHash)]
1724pub struct OwnerInfo<'hir> {
1725    /// Contents of the HIR.
1726    pub nodes: OwnerNodes<'hir>,
1727    /// Map from each nested owner to its parent's local id.
1728    pub parenting: LocalDefIdMap<ItemLocalId>,
1729    /// Collected attributes of the HIR nodes.
1730    pub attrs: AttributeMap<'hir>,
1731    /// Map indicating what traits are in scope for places where this
1732    /// is relevant; generated by resolve.
1733    pub trait_map: ItemLocalMap<&'hir [TraitCandidate<'hir>]>,
1734
1735    /// Lints delayed during ast lowering to be emitted
1736    /// after hir has completely built
1737    ///
1738    /// WARNING: The delayed lints are not hashed as a part of the `OwnerInfo`, and therefore
1739    ///          should only be accessed in `eval_always` queries.
1740    #[stable_hash(ignore)]
1741    pub delayed_lints: Steal<DelayedLints>,
1742}
1743
1744impl<'tcx> OwnerInfo<'tcx> {
1745    #[inline]
1746    pub fn node(&self) -> OwnerNode<'tcx> {
1747        self.nodes.node()
1748    }
1749}
1750
1751#[derive(#[automatically_derived]
impl<'tcx> ::core::marker::Copy for MaybeOwner<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for MaybeOwner<'tcx> {
    #[inline]
    fn clone(&self) -> MaybeOwner<'tcx> {
        let _: ::core::clone::AssertParamIsClone<&'tcx OwnerInfo<'tcx>>;
        let _: ::core::clone::AssertParamIsClone<HirId>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for MaybeOwner<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            MaybeOwner::Owner(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Owner",
                    &__self_0),
            MaybeOwner::NonOwner(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "NonOwner", &__self_0),
            MaybeOwner::Phantom =>
                ::core::fmt::Formatter::write_str(f, "Phantom"),
        }
    }
}Debug, const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hash::StableHash for
            MaybeOwner<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    MaybeOwner::Owner(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    MaybeOwner::NonOwner(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    MaybeOwner::Phantom => {}
                }
            }
        }
    };StableHash)]
1752pub enum MaybeOwner<'tcx> {
1753    Owner(&'tcx OwnerInfo<'tcx>),
1754    NonOwner(HirId),
1755    /// Used as a placeholder for unused LocalDefId.
1756    Phantom,
1757}
1758
1759impl<'tcx> MaybeOwner<'tcx> {
1760    pub fn as_owner(self) -> Option<&'tcx OwnerInfo<'tcx>> {
1761        match self {
1762            MaybeOwner::Owner(i) => Some(i),
1763            MaybeOwner::NonOwner(_) | MaybeOwner::Phantom => None,
1764        }
1765    }
1766
1767    pub fn unwrap(self) -> &'tcx OwnerInfo<'tcx> {
1768        self.as_owner().unwrap_or_else(|| { ::core::panicking::panic_fmt(format_args!("Not a HIR owner")); }panic!("Not a HIR owner"))
1769    }
1770}
1771
1772#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Closure<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["def_id", "binder", "constness", "capture_clause",
                        "bound_generic_params", "fn_decl", "body", "fn_decl_span",
                        "fn_arg_span", "kind", "explicit_captures"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.def_id, &self.binder, &self.constness,
                        &self.capture_clause, &self.bound_generic_params,
                        &self.fn_decl, &self.body, &self.fn_decl_span,
                        &self.fn_arg_span, &self.kind, &&self.explicit_captures];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "Closure",
            names, values)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Closure<'hir> {
    #[inline]
    fn clone(&self) -> Closure<'hir> {
        let _: ::core::clone::AssertParamIsClone<LocalDefId>;
        let _: ::core::clone::AssertParamIsClone<ClosureBinder>;
        let _: ::core::clone::AssertParamIsClone<Constness>;
        let _: ::core::clone::AssertParamIsClone<CaptureBy>;
        let _: ::core::clone::AssertParamIsClone<&'hir [GenericParam<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<&'hir FnDecl<'hir>>;
        let _: ::core::clone::AssertParamIsClone<BodyId>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<Option<Span>>;
        let _: ::core::clone::AssertParamIsClone<ClosureKind>;
        let _: ::core::clone::AssertParamIsClone<&'hir [ExplicitCapture]>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for Closure<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Closure<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Closure {
                        def_id: ref __binding_0,
                        binder: ref __binding_1,
                        constness: ref __binding_2,
                        capture_clause: ref __binding_3,
                        bound_generic_params: ref __binding_4,
                        fn_decl: ref __binding_5,
                        body: ref __binding_6,
                        fn_decl_span: ref __binding_7,
                        fn_arg_span: ref __binding_8,
                        kind: ref __binding_9,
                        explicit_captures: ref __binding_10 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        { __binding_5.stable_hash(__hcx, __hasher); }
                        { __binding_6.stable_hash(__hcx, __hasher); }
                        { __binding_7.stable_hash(__hcx, __hasher); }
                        { __binding_8.stable_hash(__hcx, __hasher); }
                        { __binding_9.stable_hash(__hcx, __hasher); }
                        { __binding_10.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
1773pub struct Closure<'hir> {
1774    pub def_id: LocalDefId,
1775    pub binder: ClosureBinder,
1776    pub constness: Constness,
1777    pub capture_clause: CaptureBy,
1778    pub bound_generic_params: &'hir [GenericParam<'hir>],
1779    pub fn_decl: &'hir FnDecl<'hir>,
1780    pub body: BodyId,
1781    /// The span of the declaration block: 'move |...| -> ...'
1782    pub fn_decl_span: Span,
1783    /// The span of the argument block `|...|`
1784    pub fn_arg_span: Option<Span>,
1785    pub kind: ClosureKind,
1786    pub explicit_captures: &'hir [ExplicitCapture],
1787}
1788
1789/// A HIR local that must be captured by value even if ordinary closure capture
1790/// analysis would infer a weaker capture kind from its uses in the body.
1791#[derive(#[automatically_derived]
impl ::core::fmt::Debug for ExplicitCapture {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f,
            "ExplicitCapture", "var_hir_id", &&self.var_hir_id)
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for ExplicitCapture {
    #[inline]
    fn clone(&self) -> ExplicitCapture {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for ExplicitCapture { }Copy, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            ExplicitCapture {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    ExplicitCapture { var_hir_id: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
1792pub struct ExplicitCapture {
1793    pub var_hir_id: HirId,
1794}
1795
1796#[derive(#[automatically_derived]
impl ::core::clone::Clone for ClosureKind {
    #[inline]
    fn clone(&self) -> ClosureKind {
        let _: ::core::clone::AssertParamIsClone<CoroutineKind>;
        let _: ::core::clone::AssertParamIsClone<CoroutineDesugaring>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for ClosureKind {
    #[inline]
    fn eq(&self, other: &ClosureKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (ClosureKind::Coroutine(__self_0),
                    ClosureKind::Coroutine(__arg1_0)) => __self_0 == __arg1_0,
                (ClosureKind::CoroutineClosure(__self_0),
                    ClosureKind::CoroutineClosure(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for ClosureKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<CoroutineKind>;
        let _: ::core::cmp::AssertParamIsEq<CoroutineDesugaring>;
    }
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for ClosureKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ClosureKind::Closure =>
                ::core::fmt::Formatter::write_str(f, "Closure"),
            ClosureKind::Coroutine(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Coroutine", &__self_0),
            ClosureKind::CoroutineClosure(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "CoroutineClosure", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl ::core::marker::Copy for ClosureKind { }Copy, #[automatically_derived]
impl ::core::hash::Hash for ClosureKind {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state);
        match self {
            ClosureKind::Coroutine(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            ClosureKind::CoroutineClosure(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            _ => {}
        }
    }
}Hash, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for ClosureKind
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    ClosureKind::Closure => {}
                    ClosureKind::Coroutine(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ClosureKind::CoroutineClosure(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for ClosureKind {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        ClosureKind::Closure => { 0usize }
                        ClosureKind::Coroutine(ref __binding_0) => { 1usize }
                        ClosureKind::CoroutineClosure(ref __binding_0) => { 2usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    ClosureKind::Closure => {}
                    ClosureKind::Coroutine(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    ClosureKind::CoroutineClosure(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for ClosureKind {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { ClosureKind::Closure }
                    1usize => {
                        ClosureKind::Coroutine(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    2usize => {
                        ClosureKind::CoroutineClosure(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `ClosureKind`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable)]
1797pub enum ClosureKind {
1798    /// This is a plain closure expression.
1799    Closure,
1800    /// This is a coroutine expression -- i.e. a closure expression in which
1801    /// we've found a `yield`. These can arise either from "plain" coroutine
1802    ///  usage (e.g. `let x = || { yield (); }`) or from a desugared expression
1803    /// (e.g. `async` and `gen` blocks).
1804    Coroutine(CoroutineKind),
1805    /// This is a coroutine-closure, which is a special sugared closure that
1806    /// returns one of the sugared coroutine (`async`/`gen`/`async gen`). It
1807    /// additionally allows capturing the coroutine's upvars by ref, and therefore
1808    /// needs to be specially treated during analysis and borrowck.
1809    CoroutineClosure(CoroutineDesugaring),
1810}
1811
1812/// A block of statements `{ .. }`, which may have a label (in this case the
1813/// `targeted_by_break` field will be `true`) and may be `unsafe` by means of
1814/// the `rules` being anything but `DefaultBlock`.
1815#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Block<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["stmts", "expr", "hir_id", "rules", "span",
                        "targeted_by_break"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.stmts, &self.expr, &self.hir_id, &self.rules, &self.span,
                        &&self.targeted_by_break];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "Block", names,
            values)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Block<'hir> {
    #[inline]
    fn clone(&self) -> Block<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir [Stmt<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Expr<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<BlockCheckMode>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for Block<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Block<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Block {
                        stmts: ref __binding_0,
                        expr: ref __binding_1,
                        hir_id: ref __binding_2,
                        rules: ref __binding_3,
                        span: ref __binding_4,
                        targeted_by_break: ref __binding_5 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        {}
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        { __binding_5.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
1816pub struct Block<'hir> {
1817    /// Statements in a block.
1818    pub stmts: &'hir [Stmt<'hir>],
1819    /// An expression at the end of the block
1820    /// without a semicolon, if any.
1821    pub expr: Option<&'hir Expr<'hir>>,
1822    #[stable_hash(ignore)]
1823    pub hir_id: HirId,
1824    /// Distinguishes between `unsafe { ... }` and `{ ... }`.
1825    pub rules: BlockCheckMode,
1826    /// The span includes the curly braces `{` and `}` around the block.
1827    pub span: Span,
1828    /// If true, then there may exist `break 'a` values that aim to
1829    /// break out of this block early.
1830    /// Used by `'label: {}` blocks and by `try {}` blocks.
1831    pub targeted_by_break: bool,
1832}
1833
1834impl<'hir> Block<'hir> {
1835    pub fn innermost_block(&self) -> &Block<'hir> {
1836        let mut block = self;
1837        while let Some(Expr { kind: ExprKind::Block(inner_block, _), .. }) = block.expr {
1838            block = inner_block;
1839        }
1840        block
1841    }
1842}
1843
1844#[derive(#[automatically_derived]
impl ::core::fmt::Debug for TyFieldPath {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "TyFieldPath",
            "variant", &self.variant, "field", &&self.field)
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for TyFieldPath {
    #[inline]
    fn clone(&self) -> TyFieldPath {
        let _: ::core::clone::AssertParamIsClone<Option<Ident>>;
        let _: ::core::clone::AssertParamIsClone<Ident>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for TyFieldPath { }Copy, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for TyFieldPath
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    TyFieldPath {
                        variant: ref __binding_0, field: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
1845pub struct TyFieldPath {
1846    pub variant: Option<Ident>,
1847    pub field: Ident,
1848}
1849
1850#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for TyPat<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "TyPat",
            "hir_id", &self.hir_id, "kind", &self.kind, "span", &&self.span)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for TyPat<'hir> {
    #[inline]
    fn clone(&self) -> TyPat<'hir> {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<TyPatKind<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for TyPat<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            TyPat<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    TyPat {
                        hir_id: ref __binding_0,
                        kind: ref __binding_1,
                        span: ref __binding_2 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
1851pub struct TyPat<'hir> {
1852    #[stable_hash(ignore)]
1853    pub hir_id: HirId,
1854    pub kind: TyPatKind<'hir>,
1855    pub span: Span,
1856}
1857
1858#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Pat<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field4_finish(f, "Pat", "hir_id",
            &self.hir_id, "kind", &self.kind, "span", &self.span,
            "default_binding_modes", &&self.default_binding_modes)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Pat<'hir> {
    #[inline]
    fn clone(&self) -> Pat<'hir> {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<PatKind<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for Pat<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Pat<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Pat {
                        hir_id: ref __binding_0,
                        kind: ref __binding_1,
                        span: ref __binding_2,
                        default_binding_modes: ref __binding_3 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
1859pub struct Pat<'hir> {
1860    #[stable_hash(ignore)]
1861    pub hir_id: HirId,
1862    pub kind: PatKind<'hir>,
1863    pub span: Span,
1864    /// Whether to use default binding modes.
1865    /// At present, this is false only for destructuring assignment.
1866    pub default_binding_modes: bool,
1867}
1868
1869impl<'hir> Pat<'hir> {
1870    fn walk_short_(&self, it: &mut impl FnMut(&Pat<'hir>) -> bool) -> bool {
1871        if !it(self) {
1872            return false;
1873        }
1874
1875        use PatKind::*;
1876        match self.kind {
1877            Missing => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
1878            Wild | Never | Expr(_) | Range(..) | Binding(.., None) | Err(_) => true,
1879            Box(s) | Deref(s) | Ref(s, _, _) | Binding(.., Some(s)) | Guard(s, _) => {
1880                s.walk_short_(it)
1881            }
1882            Struct(_, fields, _) => fields.iter().all(|field| field.pat.walk_short_(it)),
1883            TupleStruct(_, s, _) | Tuple(s, _) | Or(s) => s.iter().all(|p| p.walk_short_(it)),
1884            Slice(before, slice, after) => {
1885                before.iter().chain(slice).chain(after.iter()).all(|p| p.walk_short_(it))
1886            }
1887        }
1888    }
1889
1890    /// Walk the pattern in left-to-right order,
1891    /// short circuiting (with `.all(..)`) if `false` is returned.
1892    ///
1893    /// Note that when visiting e.g. `Tuple(ps)`,
1894    /// if visiting `ps[0]` returns `false`,
1895    /// then `ps[1]` will not be visited.
1896    pub fn walk_short(&self, mut it: impl FnMut(&Pat<'hir>) -> bool) -> bool {
1897        self.walk_short_(&mut it)
1898    }
1899
1900    fn walk_(&self, it: &mut impl FnMut(&Pat<'hir>) -> bool) {
1901        if !it(self) {
1902            return;
1903        }
1904
1905        use PatKind::*;
1906        match self.kind {
1907            Missing | Wild | Never | Expr(_) | Range(..) | Binding(.., None) | Err(_) => {}
1908            Box(s) | Deref(s) | Ref(s, _, _) | Binding(.., Some(s)) | Guard(s, _) => s.walk_(it),
1909            Struct(_, fields, _) => fields.iter().for_each(|field| field.pat.walk_(it)),
1910            TupleStruct(_, s, _) | Tuple(s, _) | Or(s) => s.iter().for_each(|p| p.walk_(it)),
1911            Slice(before, slice, after) => {
1912                before.iter().chain(slice).chain(after.iter()).for_each(|p| p.walk_(it))
1913            }
1914        }
1915    }
1916
1917    /// Walk the pattern in left-to-right order.
1918    ///
1919    /// If `it(pat)` returns `false`, the children are not visited.
1920    pub fn walk(&self, mut it: impl FnMut(&Pat<'hir>) -> bool) {
1921        self.walk_(&mut it)
1922    }
1923
1924    /// Walk the pattern in left-to-right order.
1925    ///
1926    /// If you always want to recurse, prefer this method over `walk`.
1927    pub fn walk_always(&self, mut it: impl FnMut(&Pat<'_>)) {
1928        self.walk(|p| {
1929            it(p);
1930            true
1931        })
1932    }
1933
1934    /// Whether this a never pattern.
1935    pub fn is_never_pattern(&self) -> bool {
1936        let mut is_never_pattern = false;
1937        self.walk(|pat| match &pat.kind {
1938            PatKind::Never => {
1939                is_never_pattern = true;
1940                false
1941            }
1942            PatKind::Or(s) => {
1943                is_never_pattern = s.iter().all(|p| p.is_never_pattern());
1944                false
1945            }
1946            _ => true,
1947        });
1948        is_never_pattern
1949    }
1950
1951    /// Whether this pattern constitutes a read of value of the scrutinee that
1952    /// it is matching against. This is used to determine whether we should
1953    /// perform `NeverToAny` coercions.
1954    ///
1955    /// See [`expr_guaranteed_to_constitute_read_for_never`][m] for the nuances of
1956    /// what happens when this returns true.
1957    ///
1958    /// [m]: ../../rustc_middle/ty/struct.TyCtxt.html#method.expr_guaranteed_to_constitute_read_for_never
1959    pub fn is_guaranteed_to_constitute_read_for_never(&self) -> bool {
1960        match self.kind {
1961            // Does not constitute a read.
1962            PatKind::Wild => false,
1963
1964            // The guard cannot affect if we make a read or not (it runs after the inner pattern
1965            // has matched), therefore it's irrelevant.
1966            PatKind::Guard(pat, _) => pat.is_guaranteed_to_constitute_read_for_never(),
1967
1968            // This is unnecessarily restrictive when the pattern that doesn't
1969            // constitute a read is unreachable.
1970            //
1971            // For example `match *never_ptr { value => {}, _ => {} }` or
1972            // `match *never_ptr { _ if false => {}, value => {} }`.
1973            //
1974            // It is however fine to be restrictive here; only returning `true`
1975            // can lead to unsoundness.
1976            PatKind::Or(subpats) => {
1977                subpats.iter().all(|pat| pat.is_guaranteed_to_constitute_read_for_never())
1978            }
1979
1980            // Does constitute a read, since it is equivalent to a discriminant read.
1981            PatKind::Never => true,
1982
1983            // All of these constitute a read, or match on something that isn't `!`,
1984            // which would require a `NeverToAny` coercion.
1985            PatKind::Missing
1986            | PatKind::Binding(_, _, _, _)
1987            | PatKind::Struct(_, _, _)
1988            | PatKind::TupleStruct(_, _, _)
1989            | PatKind::Tuple(_, _)
1990            | PatKind::Box(_)
1991            | PatKind::Ref(_, _, _)
1992            | PatKind::Deref(_)
1993            | PatKind::Expr(_)
1994            | PatKind::Range(_, _, _)
1995            | PatKind::Slice(_, _, _)
1996            | PatKind::Err(_) => true,
1997        }
1998    }
1999}
2000
2001/// A single field in a struct pattern.
2002///
2003/// Patterns like the fields of Foo `{ x, ref y, ref mut z }`
2004/// are treated the same as` x: x, y: ref y, z: ref mut z`,
2005/// except `is_shorthand` is true.
2006#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for PatField<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "PatField",
            "hir_id", &self.hir_id, "ident", &self.ident, "pat", &self.pat,
            "is_shorthand", &self.is_shorthand, "span", &&self.span)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for PatField<'hir> {
    #[inline]
    fn clone(&self) -> PatField<'hir> {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<&'hir Pat<'hir>>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for PatField<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            PatField<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    PatField {
                        hir_id: ref __binding_0,
                        ident: ref __binding_1,
                        pat: ref __binding_2,
                        is_shorthand: ref __binding_3,
                        span: ref __binding_4 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2007pub struct PatField<'hir> {
2008    #[stable_hash(ignore)]
2009    pub hir_id: HirId,
2010    /// The identifier for the field.
2011    pub ident: Ident,
2012    /// The pattern the field is destructured to.
2013    pub pat: &'hir Pat<'hir>,
2014    pub is_shorthand: bool,
2015    pub span: Span,
2016}
2017
2018#[derive(#[automatically_derived]
impl ::core::marker::Copy for RangeEnd { }Copy, #[automatically_derived]
impl ::core::clone::Clone for RangeEnd {
    #[inline]
    fn clone(&self) -> RangeEnd { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for RangeEnd {
    #[inline]
    fn eq(&self, other: &RangeEnd) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::fmt::Debug for RangeEnd {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                RangeEnd::Included => "Included",
                RangeEnd::Excluded => "Excluded",
            })
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for RangeEnd {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    RangeEnd::Included => {}
                    RangeEnd::Excluded => {}
                }
            }
        }
    };StableHash, #[automatically_derived]
impl ::core::hash::Hash for RangeEnd {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, #[automatically_derived]
impl ::core::cmp::Eq for RangeEnd {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for RangeEnd {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        RangeEnd::Included => { 0usize }
                        RangeEnd::Excluded => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    RangeEnd::Included => {}
                    RangeEnd::Excluded => {}
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for RangeEnd {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { RangeEnd::Included }
                    1usize => { RangeEnd::Excluded }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `RangeEnd`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable)]
2019pub enum RangeEnd {
2020    Included,
2021    Excluded,
2022}
2023
2024impl fmt::Display for RangeEnd {
2025    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2026        f.write_str(match self {
2027            RangeEnd::Included => "..=",
2028            RangeEnd::Excluded => "..",
2029        })
2030    }
2031}
2032
2033// Equivalent to `Option<usize>`. That type takes up 16 bytes on 64-bit, but
2034// this type only takes up 4 bytes, at the cost of being restricted to a
2035// maximum value of `u32::MAX - 1`. In practice, this is more than enough.
2036#[derive(#[automatically_derived]
impl ::core::clone::Clone for DotDotPos {
    #[inline]
    fn clone(&self) -> DotDotPos {
        let _: ::core::clone::AssertParamIsClone<u32>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for DotDotPos { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for DotDotPos {
    #[inline]
    fn eq(&self, other: &DotDotPos) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for DotDotPos {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<u32>;
    }
}Eq, #[automatically_derived]
impl ::core::hash::Hash for DotDotPos {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.0, state)
    }
}Hash, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for DotDotPos {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    DotDotPos(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2037pub struct DotDotPos(u32);
2038
2039impl DotDotPos {
2040    /// Panics if n >= u32::MAX.
2041    pub fn new(n: Option<usize>) -> Self {
2042        match n {
2043            Some(n) => {
2044                if !(n < u32::MAX as usize) {
    ::core::panicking::panic("assertion failed: n < u32::MAX as usize")
};assert!(n < u32::MAX as usize);
2045                Self(n as u32)
2046            }
2047            None => Self(u32::MAX),
2048        }
2049    }
2050
2051    pub fn as_opt_usize(&self) -> Option<usize> {
2052        if self.0 == u32::MAX { None } else { Some(self.0 as usize) }
2053    }
2054}
2055
2056impl fmt::Debug for DotDotPos {
2057    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2058        self.as_opt_usize().fmt(f)
2059    }
2060}
2061
2062#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for PatExpr<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "PatExpr",
            "hir_id", &self.hir_id, "span", &self.span, "kind", &&self.kind)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for PatExpr<'hir> {
    #[inline]
    fn clone(&self) -> PatExpr<'hir> {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<PatExprKind<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for PatExpr<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            PatExpr<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    PatExpr {
                        hir_id: ref __binding_0,
                        span: ref __binding_1,
                        kind: ref __binding_2 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2063pub struct PatExpr<'hir> {
2064    #[stable_hash(ignore)]
2065    pub hir_id: HirId,
2066    pub span: Span,
2067    pub kind: PatExprKind<'hir>,
2068}
2069
2070#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for PatExprKind<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            PatExprKind::Lit { lit: __self_0, negated: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f, "Lit",
                    "lit", __self_0, "negated", &__self_1),
            PatExprKind::Path(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Path",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for PatExprKind<'hir> {
    #[inline]
    fn clone(&self) -> PatExprKind<'hir> {
        let _: ::core::clone::AssertParamIsClone<Lit>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        let _: ::core::clone::AssertParamIsClone<QPath<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for PatExprKind<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            PatExprKind<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    PatExprKind::Lit {
                        lit: ref __binding_0, negated: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    PatExprKind::Path(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2071pub enum PatExprKind<'hir> {
2072    Lit {
2073        lit: Lit,
2074        negated: bool,
2075    },
2076    /// A path pattern for a unit struct/variant or a (maybe-associated) constant.
2077    Path(QPath<'hir>),
2078}
2079
2080#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for TyPatKind<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            TyPatKind::Range(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Range",
                    __self_0, &__self_1),
            TyPatKind::NotNull =>
                ::core::fmt::Formatter::write_str(f, "NotNull"),
            TyPatKind::Or(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Or",
                    &__self_0),
            TyPatKind::Err(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Err",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for TyPatKind<'hir> {
    #[inline]
    fn clone(&self) -> TyPatKind<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir ConstArg<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir ConstArg<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [TyPat<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<ErrorGuaranteed>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for TyPatKind<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            TyPatKind<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    TyPatKind::Range(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    TyPatKind::NotNull => {}
                    TyPatKind::Or(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    TyPatKind::Err(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2081pub enum TyPatKind<'hir> {
2082    /// A range pattern (e.g., `1..=2` or `1..2`).
2083    Range(&'hir ConstArg<'hir>, &'hir ConstArg<'hir>),
2084
2085    /// A pattern that excludes null pointers
2086    NotNull,
2087
2088    /// A list of patterns where only one needs to be satisfied
2089    Or(&'hir [TyPat<'hir>]),
2090
2091    /// A placeholder for a pattern that wasn't well formed in some way.
2092    Err(ErrorGuaranteed),
2093}
2094
2095#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for PatKind<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            PatKind::Missing =>
                ::core::fmt::Formatter::write_str(f, "Missing"),
            PatKind::Wild => ::core::fmt::Formatter::write_str(f, "Wild"),
            PatKind::Binding(__self_0, __self_1, __self_2, __self_3) =>
                ::core::fmt::Formatter::debug_tuple_field4_finish(f,
                    "Binding", __self_0, __self_1, __self_2, &__self_3),
            PatKind::Struct(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Struct",
                    __self_0, __self_1, &__self_2),
            PatKind::TupleStruct(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f,
                    "TupleStruct", __self_0, __self_1, &__self_2),
            PatKind::Or(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Or",
                    &__self_0),
            PatKind::Never => ::core::fmt::Formatter::write_str(f, "Never"),
            PatKind::Tuple(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Tuple",
                    __self_0, &__self_1),
            PatKind::Box(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Box",
                    &__self_0),
            PatKind::Deref(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Deref",
                    &__self_0),
            PatKind::Ref(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Ref",
                    __self_0, __self_1, &__self_2),
            PatKind::Expr(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Expr",
                    &__self_0),
            PatKind::Guard(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Guard",
                    __self_0, &__self_1),
            PatKind::Range(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Range",
                    __self_0, __self_1, &__self_2),
            PatKind::Slice(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Slice",
                    __self_0, __self_1, &__self_2),
            PatKind::Err(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Err",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for PatKind<'hir> {
    #[inline]
    fn clone(&self) -> PatKind<'hir> {
        let _: ::core::clone::AssertParamIsClone<BindingMode>;
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Pat<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<QPath<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [PatField<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<Option<Span>>;
        let _: ::core::clone::AssertParamIsClone<QPath<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [Pat<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<DotDotPos>;
        let _: ::core::clone::AssertParamIsClone<&'hir [Pat<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<&'hir [Pat<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<&'hir Pat<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Pat<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Pat<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Pinnedness>;
        let _: ::core::clone::AssertParamIsClone<Mutability>;
        let _: ::core::clone::AssertParamIsClone<&'hir PatExpr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Pat<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir PatExpr<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir PatExpr<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<RangeEnd>;
        let _: ::core::clone::AssertParamIsClone<&'hir [Pat<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Pat<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [Pat<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<ErrorGuaranteed>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for PatKind<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            PatKind<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    PatKind::Missing => {}
                    PatKind::Wild => {}
                    PatKind::Binding(ref __binding_0, ref __binding_1,
                        ref __binding_2, ref __binding_3) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                    PatKind::Struct(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    PatKind::TupleStruct(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    PatKind::Or(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    PatKind::Never => {}
                    PatKind::Tuple(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    PatKind::Box(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    PatKind::Deref(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    PatKind::Ref(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    PatKind::Expr(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    PatKind::Guard(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    PatKind::Range(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    PatKind::Slice(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    PatKind::Err(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2096pub enum PatKind<'hir> {
2097    /// A missing pattern, e.g. for an anonymous param in a bare fn like `fn f(u32)`.
2098    Missing,
2099
2100    /// Represents a wildcard pattern (i.e., `_`).
2101    Wild,
2102
2103    /// A fresh binding `ref mut binding @ OPT_SUBPATTERN`.
2104    /// The `HirId` is the canonical ID for the variable being bound,
2105    /// (e.g., in `Ok(x) | Err(x)`, both `x` use the same canonical ID),
2106    /// which is the pattern ID of the first `x`.
2107    ///
2108    /// The `BindingMode` is what's provided by the user, before match
2109    /// ergonomics are applied. For the binding mode actually in use,
2110    /// see [`TypeckResults::extract_binding_mode`].
2111    ///
2112    /// [`TypeckResults::extract_binding_mode`]: ../../rustc_middle/ty/struct.TypeckResults.html#method.extract_binding_mode
2113    Binding(BindingMode, HirId, Ident, Option<&'hir Pat<'hir>>),
2114
2115    /// A struct or struct variant pattern (e.g., `Variant {x, y, ..}`).
2116    /// The `Option` contains the span of a possible `..`.
2117    Struct(QPath<'hir>, &'hir [PatField<'hir>], Option<Span>),
2118
2119    /// A tuple struct/variant pattern `Variant(x, y, .., z)`.
2120    /// If the `..` pattern fragment is present, then `DotDotPos` denotes its position.
2121    /// `0 <= position <= subpats.len()`
2122    TupleStruct(QPath<'hir>, &'hir [Pat<'hir>], DotDotPos),
2123
2124    /// An or-pattern `A | B | C`.
2125    /// Invariant: `pats.len() >= 2`.
2126    Or(&'hir [Pat<'hir>]),
2127
2128    /// A never pattern `!`.
2129    Never,
2130
2131    /// A tuple pattern (e.g., `(a, b)`).
2132    /// If the `..` pattern fragment is present, then `DotDotPos` denotes its position.
2133    /// `0 <= position <= subpats.len()`
2134    Tuple(&'hir [Pat<'hir>], DotDotPos),
2135
2136    /// A `box` pattern.
2137    Box(&'hir Pat<'hir>),
2138
2139    /// A `deref` pattern (currently `deref!()` macro-based syntax).
2140    Deref(&'hir Pat<'hir>),
2141
2142    /// A reference pattern (e.g., `&mut (a, b)`).
2143    Ref(&'hir Pat<'hir>, Pinnedness, Mutability),
2144
2145    /// A literal, const block or path.
2146    Expr(&'hir PatExpr<'hir>),
2147
2148    /// A guard pattern (e.g., `x if guard(x)`).
2149    Guard(&'hir Pat<'hir>, &'hir Expr<'hir>),
2150
2151    /// A range pattern (e.g., `1..=2` or `1..2`).
2152    Range(Option<&'hir PatExpr<'hir>>, Option<&'hir PatExpr<'hir>>, RangeEnd),
2153
2154    /// A slice pattern, `[before_0, ..., before_n, (slice, after_0, ..., after_n)?]`.
2155    ///
2156    /// Here, `slice` is lowered from the syntax `($binding_mode $ident @)? ..`.
2157    /// If `slice` exists, then `after` can be non-empty.
2158    ///
2159    /// The representation for e.g., `[a, b, .., c, d]` is:
2160    /// ```ignore (illustrative)
2161    /// PatKind::Slice([Binding(a), Binding(b)], Some(Wild), [Binding(c), Binding(d)])
2162    /// ```
2163    Slice(&'hir [Pat<'hir>], Option<&'hir Pat<'hir>>, &'hir [Pat<'hir>]),
2164
2165    /// A placeholder for a pattern that wasn't well formed in some way.
2166    Err(ErrorGuaranteed),
2167}
2168
2169/// A statement.
2170#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Stmt<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "Stmt",
            "hir_id", &self.hir_id, "kind", &self.kind, "span", &&self.span)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Stmt<'hir> {
    #[inline]
    fn clone(&self) -> Stmt<'hir> {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<StmtKind<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for Stmt<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Stmt<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Stmt {
                        hir_id: ref __binding_0,
                        kind: ref __binding_1,
                        span: ref __binding_2 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2171pub struct Stmt<'hir> {
2172    #[stable_hash(ignore)]
2173    pub hir_id: HirId,
2174    pub kind: StmtKind<'hir>,
2175    pub span: Span,
2176}
2177
2178/// The contents of a statement.
2179#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for StmtKind<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            StmtKind::Let(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Let",
                    &__self_0),
            StmtKind::Item(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Item",
                    &__self_0),
            StmtKind::Expr(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Expr",
                    &__self_0),
            StmtKind::Semi(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Semi",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for StmtKind<'hir> {
    #[inline]
    fn clone(&self) -> StmtKind<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir LetStmt<'hir>>;
        let _: ::core::clone::AssertParamIsClone<ItemId>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for StmtKind<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            StmtKind<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    StmtKind::Let(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    StmtKind::Item(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    StmtKind::Expr(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    StmtKind::Semi(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2180pub enum StmtKind<'hir> {
2181    /// A local (`let`) binding.
2182    Let(&'hir LetStmt<'hir>),
2183
2184    /// An item binding.
2185    Item(ItemId),
2186
2187    /// An expression without a trailing semi-colon (must have unit type).
2188    Expr(&'hir Expr<'hir>),
2189
2190    /// An expression with a trailing semi-colon (may have any type).
2191    Semi(&'hir Expr<'hir>),
2192}
2193
2194/// Represents a `let` statement (i.e., `let <pat>:<ty> = <init>;`).
2195#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for LetStmt<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["super_", "pat", "ty", "init", "els", "hir_id", "span",
                        "source"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.super_, &self.pat, &self.ty, &self.init, &self.els,
                        &self.hir_id, &self.span, &&self.source];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "LetStmt",
            names, values)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for LetStmt<'hir> {
    #[inline]
    fn clone(&self) -> LetStmt<'hir> {
        let _: ::core::clone::AssertParamIsClone<Option<Span>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Pat<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Ty<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Expr<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Block<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<LocalSource>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for LetStmt<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            LetStmt<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    LetStmt {
                        super_: ref __binding_0,
                        pat: ref __binding_1,
                        ty: ref __binding_2,
                        init: ref __binding_3,
                        els: ref __binding_4,
                        hir_id: ref __binding_5,
                        span: ref __binding_6,
                        source: ref __binding_7 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        {}
                        { __binding_6.stable_hash(__hcx, __hasher); }
                        { __binding_7.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2196pub struct LetStmt<'hir> {
2197    /// Span of `super` in `super let`.
2198    pub super_: Option<Span>,
2199    pub pat: &'hir Pat<'hir>,
2200    /// Type annotation, if any (otherwise the type will be inferred).
2201    pub ty: Option<&'hir Ty<'hir>>,
2202    /// Initializer expression to set the value, if any.
2203    pub init: Option<&'hir Expr<'hir>>,
2204    /// Else block for a `let...else` binding.
2205    pub els: Option<&'hir Block<'hir>>,
2206    #[stable_hash(ignore)]
2207    pub hir_id: HirId,
2208    pub span: Span,
2209    /// Can be `ForLoopDesugar` if the `let` statement is part of a `for` loop
2210    /// desugaring, or `AssignDesugar` if it is the result of a complex
2211    /// assignment desugaring. Otherwise will be `Normal`.
2212    pub source: LocalSource,
2213}
2214
2215/// Represents a single arm of a `match` expression, e.g.
2216/// `<pat> (if <guard>) => <body>`.
2217#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Arm<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "Arm", "hir_id",
            &self.hir_id, "span", &self.span, "pat", &self.pat, "guard",
            &self.guard, "body", &&self.body)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Arm<'hir> {
    #[inline]
    fn clone(&self) -> Arm<'hir> {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<&'hir Pat<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Expr<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for Arm<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Arm<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Arm {
                        hir_id: ref __binding_0,
                        span: ref __binding_1,
                        pat: ref __binding_2,
                        guard: ref __binding_3,
                        body: ref __binding_4 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2218pub struct Arm<'hir> {
2219    #[stable_hash(ignore)]
2220    pub hir_id: HirId,
2221    pub span: Span,
2222    /// If this pattern and the optional guard matches, then `body` is evaluated.
2223    pub pat: &'hir Pat<'hir>,
2224    /// Optional guard clause.
2225    pub guard: Option<&'hir Expr<'hir>>,
2226    /// The expression the arm evaluates to if this arm matches.
2227    pub body: &'hir Expr<'hir>,
2228}
2229
2230/// Represents a `let <pat>[: <ty>] = <expr>` expression (not a [`LetStmt`]), occurring in an `if-let`
2231/// or `let-else`, evaluating to a boolean. Typically the pattern is refutable.
2232///
2233/// In an `if let`, imagine it as `if (let <pat> = <expr>) { ... }`; in a let-else, it is part of
2234/// the desugaring to if-let. Only let-else supports the type annotation at present.
2235#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for LetExpr<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "LetExpr",
            "span", &self.span, "pat", &self.pat, "ty", &self.ty, "init",
            &self.init, "recovered", &&self.recovered)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for LetExpr<'hir> {
    #[inline]
    fn clone(&self) -> LetExpr<'hir> {
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<&'hir Pat<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Ty<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<ast::Recovered>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for LetExpr<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            LetExpr<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    LetExpr {
                        span: ref __binding_0,
                        pat: ref __binding_1,
                        ty: ref __binding_2,
                        init: ref __binding_3,
                        recovered: ref __binding_4 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2236pub struct LetExpr<'hir> {
2237    pub span: Span,
2238    pub pat: &'hir Pat<'hir>,
2239    pub ty: Option<&'hir Ty<'hir>>,
2240    pub init: &'hir Expr<'hir>,
2241    /// `Recovered::Yes` when this let expressions is not in a syntactically valid location.
2242    /// Used to prevent building MIR in such situations.
2243    pub recovered: ast::Recovered,
2244}
2245
2246#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for ExprField<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "ExprField",
            "hir_id", &self.hir_id, "ident", &self.ident, "expr", &self.expr,
            "span", &self.span, "is_shorthand", &&self.is_shorthand)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for ExprField<'hir> {
    #[inline]
    fn clone(&self) -> ExprField<'hir> {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for ExprField<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            ExprField<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    ExprField {
                        hir_id: ref __binding_0,
                        ident: ref __binding_1,
                        expr: ref __binding_2,
                        span: ref __binding_3,
                        is_shorthand: ref __binding_4 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2247pub struct ExprField<'hir> {
2248    #[stable_hash(ignore)]
2249    pub hir_id: HirId,
2250    pub ident: Ident,
2251    pub expr: &'hir Expr<'hir>,
2252    pub span: Span,
2253    pub is_shorthand: bool,
2254}
2255
2256#[derive(#[automatically_derived]
impl ::core::marker::Copy for BlockCheckMode { }Copy, #[automatically_derived]
impl ::core::clone::Clone for BlockCheckMode {
    #[inline]
    fn clone(&self) -> BlockCheckMode {
        let _: ::core::clone::AssertParamIsClone<UnsafeSource>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for BlockCheckMode {
    #[inline]
    fn eq(&self, other: &BlockCheckMode) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (BlockCheckMode::UnsafeBlock(__self_0),
                    BlockCheckMode::UnsafeBlock(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::fmt::Debug for BlockCheckMode {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            BlockCheckMode::DefaultBlock =>
                ::core::fmt::Formatter::write_str(f, "DefaultBlock"),
            BlockCheckMode::UnsafeBlock(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "UnsafeBlock", &__self_0),
        }
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            BlockCheckMode {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    BlockCheckMode::DefaultBlock => {}
                    BlockCheckMode::UnsafeBlock(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2257pub enum BlockCheckMode {
2258    DefaultBlock,
2259    UnsafeBlock(UnsafeSource),
2260}
2261
2262#[derive(#[automatically_derived]
impl ::core::marker::Copy for UnsafeSource { }Copy, #[automatically_derived]
impl ::core::clone::Clone for UnsafeSource {
    #[inline]
    fn clone(&self) -> UnsafeSource { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for UnsafeSource {
    #[inline]
    fn eq(&self, other: &UnsafeSource) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::fmt::Debug for UnsafeSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                UnsafeSource::CompilerGenerated => "CompilerGenerated",
                UnsafeSource::UserProvided => "UserProvided",
            })
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for UnsafeSource
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    UnsafeSource::CompilerGenerated => {}
                    UnsafeSource::UserProvided => {}
                }
            }
        }
    };StableHash)]
2263pub enum UnsafeSource {
2264    CompilerGenerated,
2265    UserProvided,
2266}
2267
2268#[derive(#[automatically_derived]
impl ::core::marker::Copy for BodyId { }Copy, #[automatically_derived]
impl ::core::clone::Clone for BodyId {
    #[inline]
    fn clone(&self) -> BodyId {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for BodyId {
    #[inline]
    fn eq(&self, other: &BodyId) -> bool { self.hir_id == other.hir_id }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for BodyId {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<HirId>;
    }
}Eq, #[automatically_derived]
impl ::core::hash::Hash for BodyId {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.hir_id, state)
    }
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for BodyId {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f, "BodyId",
            "hir_id", &&self.hir_id)
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for BodyId {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    BodyId { hir_id: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2269pub struct BodyId {
2270    pub hir_id: HirId,
2271}
2272
2273/// The body of a function, closure, or constant value. In the case of
2274/// a function, the body contains not only the function body itself
2275/// (which is an expression), but also the argument patterns, since
2276/// those are something that the caller doesn't really care about.
2277///
2278/// # Examples
2279///
2280/// ```
2281/// fn foo((x, y): (u32, u32)) -> u32 {
2282///     x + y
2283/// }
2284/// ```
2285///
2286/// Here, the `Body` associated with `foo()` would contain:
2287///
2288/// - an `params` array containing the `(x, y)` pattern
2289/// - a `value` containing the `x + y` expression (maybe wrapped in a block)
2290/// - `coroutine_kind` would be `None`
2291///
2292/// All bodies have an **owner**, which can be accessed via the HIR
2293/// map using `body_owner_def_id()`.
2294#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Body<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "Body",
            "params", &self.params, "value", &&self.value)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Body<'hir> {
    #[inline]
    fn clone(&self) -> Body<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir [Param<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for Body<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Body<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Body { params: ref __binding_0, value: ref __binding_1 } =>
                        {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2295pub struct Body<'hir> {
2296    pub params: &'hir [Param<'hir>],
2297    pub value: &'hir Expr<'hir>,
2298}
2299
2300impl<'hir> Body<'hir> {
2301    pub fn id(&self) -> BodyId {
2302        BodyId { hir_id: self.value.hir_id }
2303    }
2304}
2305
2306/// The type of source expression that caused this coroutine to be created.
2307#[derive(#[automatically_derived]
impl ::core::clone::Clone for CoroutineKind {
    #[inline]
    fn clone(&self) -> CoroutineKind {
        let _: ::core::clone::AssertParamIsClone<CoroutineDesugaring>;
        let _: ::core::clone::AssertParamIsClone<CoroutineSource>;
        let _: ::core::clone::AssertParamIsClone<Movability>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for CoroutineKind {
    #[inline]
    fn eq(&self, other: &CoroutineKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (CoroutineKind::Desugared(__self_0, __self_1),
                    CoroutineKind::Desugared(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (CoroutineKind::Coroutine(__self_0),
                    CoroutineKind::Coroutine(__arg1_0)) => __self_0 == __arg1_0,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for CoroutineKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<CoroutineDesugaring>;
        let _: ::core::cmp::AssertParamIsEq<CoroutineSource>;
        let _: ::core::cmp::AssertParamIsEq<Movability>;
    }
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for CoroutineKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            CoroutineKind::Desugared(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f,
                    "Desugared", __self_0, &__self_1),
            CoroutineKind::Coroutine(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Coroutine", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl ::core::marker::Copy for CoroutineKind { }Copy, #[automatically_derived]
impl ::core::hash::Hash for CoroutineKind {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state);
        match self {
            CoroutineKind::Desugared(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            CoroutineKind::Coroutine(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
        }
    }
}Hash, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            CoroutineKind {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    CoroutineKind::Desugared(ref __binding_0, ref __binding_1)
                        => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    CoroutineKind::Coroutine(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for CoroutineKind {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        CoroutineKind::Desugared(ref __binding_0, ref __binding_1)
                            => {
                            0usize
                        }
                        CoroutineKind::Coroutine(ref __binding_0) => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    CoroutineKind::Desugared(ref __binding_0, ref __binding_1)
                        => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    CoroutineKind::Coroutine(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for CoroutineKind {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        CoroutineKind::Desugared(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => {
                        CoroutineKind::Coroutine(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `CoroutineKind`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable)]
2308pub enum CoroutineKind {
2309    /// A coroutine that comes from a desugaring.
2310    Desugared(CoroutineDesugaring, CoroutineSource),
2311
2312    /// A coroutine literal created via a `yield` inside a closure.
2313    Coroutine(Movability),
2314}
2315
2316impl CoroutineKind {
2317    pub fn movability(self) -> Movability {
2318        match self {
2319            CoroutineKind::Desugared(CoroutineDesugaring::Async, _)
2320            | CoroutineKind::Desugared(CoroutineDesugaring::AsyncGen, _) => Movability::Static,
2321            CoroutineKind::Desugared(CoroutineDesugaring::Gen, _) => Movability::Movable,
2322            CoroutineKind::Coroutine(mov) => mov,
2323        }
2324    }
2325
2326    pub fn is_fn_like(self) -> bool {
2327        #[allow(non_exhaustive_omitted_patterns)] match self {
    CoroutineKind::Desugared(_, CoroutineSource::Fn) => true,
    _ => false,
}matches!(self, CoroutineKind::Desugared(_, CoroutineSource::Fn))
2328    }
2329
2330    pub fn to_plural_string(&self) -> String {
2331        match self {
2332            CoroutineKind::Desugared(d, CoroutineSource::Fn) => ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0:#}fn bodies", d))
    })format!("{d:#}fn bodies"),
2333            CoroutineKind::Desugared(d, CoroutineSource::Block) => ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0:#}blocks", d))
    })format!("{d:#}blocks"),
2334            CoroutineKind::Desugared(d, CoroutineSource::Closure) => ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0:#}closure bodies", d))
    })format!("{d:#}closure bodies"),
2335            CoroutineKind::Coroutine(_) => "coroutines".to_string(),
2336        }
2337    }
2338}
2339
2340impl fmt::Display for CoroutineKind {
2341    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2342        match self {
2343            CoroutineKind::Desugared(d, k) => {
2344                d.fmt(f)?;
2345                k.fmt(f)
2346            }
2347            CoroutineKind::Coroutine(_) => f.write_str("coroutine"),
2348        }
2349    }
2350}
2351
2352/// In the case of a coroutine created as part of an async/gen construct,
2353/// which kind of async/gen construct caused it to be created?
2354///
2355/// This helps error messages but is also used to drive coercions in
2356/// type-checking (see #60424).
2357#[derive(#[automatically_derived]
impl ::core::clone::Clone for CoroutineSource {
    #[inline]
    fn clone(&self) -> CoroutineSource { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for CoroutineSource {
    #[inline]
    fn eq(&self, other: &CoroutineSource) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for CoroutineSource {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for CoroutineSource {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for CoroutineSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                CoroutineSource::Block => "Block",
                CoroutineSource::Closure => "Closure",
                CoroutineSource::Fn => "Fn",
            })
    }
}Debug, #[automatically_derived]
impl ::core::marker::Copy for CoroutineSource { }Copy, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            CoroutineSource {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    CoroutineSource::Block => {}
                    CoroutineSource::Closure => {}
                    CoroutineSource::Fn => {}
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for CoroutineSource {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        CoroutineSource::Block => { 0usize }
                        CoroutineSource::Closure => { 1usize }
                        CoroutineSource::Fn => { 2usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    CoroutineSource::Block => {}
                    CoroutineSource::Closure => {}
                    CoroutineSource::Fn => {}
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for CoroutineSource {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { CoroutineSource::Block }
                    1usize => { CoroutineSource::Closure }
                    2usize => { CoroutineSource::Fn }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `CoroutineSource`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable)]
2358pub enum CoroutineSource {
2359    /// An explicit `async`/`gen` block written by the user.
2360    Block,
2361
2362    /// An explicit `async`/`gen` closure written by the user.
2363    Closure,
2364
2365    /// The `async`/`gen` block generated as the body of an async/gen function.
2366    Fn,
2367}
2368
2369impl fmt::Display for CoroutineSource {
2370    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2371        match self {
2372            CoroutineSource::Block => "block",
2373            CoroutineSource::Closure => "closure body",
2374            CoroutineSource::Fn => "fn body",
2375        }
2376        .fmt(f)
2377    }
2378}
2379
2380#[derive(#[automatically_derived]
impl ::core::clone::Clone for CoroutineDesugaring {
    #[inline]
    fn clone(&self) -> CoroutineDesugaring { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for CoroutineDesugaring {
    #[inline]
    fn eq(&self, other: &CoroutineDesugaring) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for CoroutineDesugaring {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for CoroutineDesugaring {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                CoroutineDesugaring::Async => "Async",
                CoroutineDesugaring::Gen => "Gen",
                CoroutineDesugaring::AsyncGen => "AsyncGen",
            })
    }
}Debug, #[automatically_derived]
impl ::core::marker::Copy for CoroutineDesugaring { }Copy, #[automatically_derived]
impl ::core::hash::Hash for CoroutineDesugaring {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            CoroutineDesugaring {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    CoroutineDesugaring::Async => {}
                    CoroutineDesugaring::Gen => {}
                    CoroutineDesugaring::AsyncGen => {}
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for CoroutineDesugaring {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        CoroutineDesugaring::Async => { 0usize }
                        CoroutineDesugaring::Gen => { 1usize }
                        CoroutineDesugaring::AsyncGen => { 2usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    CoroutineDesugaring::Async => {}
                    CoroutineDesugaring::Gen => {}
                    CoroutineDesugaring::AsyncGen => {}
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for CoroutineDesugaring {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { CoroutineDesugaring::Async }
                    1usize => { CoroutineDesugaring::Gen }
                    2usize => { CoroutineDesugaring::AsyncGen }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `CoroutineDesugaring`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable)]
2381pub enum CoroutineDesugaring {
2382    /// An explicit `async` block or the body of an `async` function.
2383    Async,
2384
2385    /// An explicit `gen` block or the body of a `gen` function.
2386    Gen,
2387
2388    /// An explicit `async gen` block or the body of an `async gen` function,
2389    /// which is able to both `yield` and `.await`.
2390    AsyncGen,
2391}
2392
2393impl fmt::Display for CoroutineDesugaring {
2394    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2395        match self {
2396            CoroutineDesugaring::Async => {
2397                if f.alternate() {
2398                    f.write_str("`async` ")?;
2399                } else {
2400                    f.write_str("async ")?
2401                }
2402            }
2403            CoroutineDesugaring::Gen => {
2404                if f.alternate() {
2405                    f.write_str("`gen` ")?;
2406                } else {
2407                    f.write_str("gen ")?
2408                }
2409            }
2410            CoroutineDesugaring::AsyncGen => {
2411                if f.alternate() {
2412                    f.write_str("`async gen` ")?;
2413                } else {
2414                    f.write_str("async gen ")?
2415                }
2416            }
2417        }
2418
2419        Ok(())
2420    }
2421}
2422
2423#[derive(#[automatically_derived]
impl ::core::marker::Copy for BodyOwnerKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for BodyOwnerKind {
    #[inline]
    fn clone(&self) -> BodyOwnerKind {
        let _: ::core::clone::AssertParamIsClone<bool>;
        let _: ::core::clone::AssertParamIsClone<Mutability>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for BodyOwnerKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            BodyOwnerKind::Fn => ::core::fmt::Formatter::write_str(f, "Fn"),
            BodyOwnerKind::Closure =>
                ::core::fmt::Formatter::write_str(f, "Closure"),
            BodyOwnerKind::Const { inline: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Const",
                    "inline", &__self_0),
            BodyOwnerKind::Static(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Static",
                    &__self_0),
            BodyOwnerKind::GlobalAsm =>
                ::core::fmt::Formatter::write_str(f, "GlobalAsm"),
        }
    }
}Debug)]
2424pub enum BodyOwnerKind {
2425    /// Functions and methods.
2426    Fn,
2427
2428    /// Closures
2429    Closure,
2430
2431    /// Constants and associated constants, also including inline constants.
2432    Const { inline: bool },
2433
2434    /// Initializer of a `static` item.
2435    Static(Mutability),
2436
2437    /// Fake body for a global asm to store its const-like value types.
2438    GlobalAsm,
2439}
2440
2441impl BodyOwnerKind {
2442    pub fn is_fn_or_closure(self) -> bool {
2443        match self {
2444            BodyOwnerKind::Fn | BodyOwnerKind::Closure => true,
2445            BodyOwnerKind::Const { .. } | BodyOwnerKind::Static(_) | BodyOwnerKind::GlobalAsm => {
2446                false
2447            }
2448        }
2449    }
2450}
2451
2452/// The kind of an item that requires const-checking.
2453#[derive(#[automatically_derived]
impl ::core::clone::Clone for ConstContext {
    #[inline]
    fn clone(&self) -> ConstContext {
        let _: ::core::clone::AssertParamIsClone<Mutability>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for ConstContext { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for ConstContext {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ConstContext::ConstFn =>
                ::core::fmt::Formatter::write_str(f, "ConstFn"),
            ConstContext::Static(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Static",
                    &__self_0),
            ConstContext::Const { inline: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Const",
                    "inline", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for ConstContext {
    #[inline]
    fn eq(&self, other: &ConstContext) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (ConstContext::Static(__self_0),
                    ConstContext::Static(__arg1_0)) => __self_0 == __arg1_0,
                (ConstContext::Const { inline: __self_0 },
                    ConstContext::Const { inline: __arg1_0 }) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for ConstContext {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<Mutability>;
        let _: ::core::cmp::AssertParamIsEq<bool>;
    }
}Eq)]
2454pub enum ConstContext {
2455    /// A `const fn`.
2456    ConstFn,
2457
2458    /// A `static` or `static mut`.
2459    Static(Mutability),
2460
2461    /// A `const`, associated `const`, or other const context.
2462    ///
2463    /// Other contexts include:
2464    /// - Array length expressions
2465    /// - Enum discriminants
2466    /// - Const generics
2467    ///
2468    /// For the most part, other contexts are treated just like a regular `const`, so they are
2469    /// lumped into the same category.
2470    Const { inline: bool },
2471}
2472
2473impl ConstContext {
2474    /// A description of this const context that can appear between backticks in an error message.
2475    ///
2476    /// E.g. `const` or `static mut`.
2477    pub fn keyword_name(self) -> &'static str {
2478        match self {
2479            Self::Const { .. } => "const",
2480            Self::Static(Mutability::Not) => "static",
2481            Self::Static(Mutability::Mut) => "static mut",
2482            Self::ConstFn => "const fn",
2483        }
2484    }
2485}
2486
2487/// A colloquial, trivially pluralizable description of this const context for use in error
2488/// messages.
2489impl fmt::Display for ConstContext {
2490    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2491        match *self {
2492            Self::Const { .. } => f.write_fmt(format_args!("constant"))write!(f, "constant"),
2493            Self::Static(_) => f.write_fmt(format_args!("static"))write!(f, "static"),
2494            Self::ConstFn => f.write_fmt(format_args!("constant function"))write!(f, "constant function"),
2495        }
2496    }
2497}
2498
2499impl IntoDiagArg for ConstContext {
2500    fn into_diag_arg(self, _: &mut Option<std::path::PathBuf>) -> DiagArgValue {
2501        DiagArgValue::Str(Cow::Borrowed(match self {
2502            ConstContext::ConstFn => "constant function",
2503            ConstContext::Static(_) => "static",
2504            ConstContext::Const { .. } => "constant",
2505        }))
2506    }
2507}
2508
2509/// A literal.
2510pub type Lit = Spanned<LitKind>;
2511
2512/// A constant (expression) that's not an item or associated item,
2513/// but needs its own `DefId` for type-checking, const-eval, etc.
2514/// These are usually found nested inside types (e.g., array lengths)
2515/// or expressions (e.g., repeat counts), and also used to define
2516/// explicit discriminant values for enum variants.
2517///
2518/// You can check if this anon const is a default in a const param
2519/// `const N: usize = { ... }` with `tcx.hir_opt_const_param_default_param_def_id(..)`
2520#[derive(#[automatically_derived]
impl ::core::marker::Copy for AnonConst { }Copy, #[automatically_derived]
impl ::core::clone::Clone for AnonConst {
    #[inline]
    fn clone(&self) -> AnonConst {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<LocalDefId>;
        let _: ::core::clone::AssertParamIsClone<BodyId>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for AnonConst {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field4_finish(f, "AnonConst",
            "hir_id", &self.hir_id, "def_id", &self.def_id, "body",
            &self.body, "span", &&self.span)
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for AnonConst {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    AnonConst {
                        hir_id: ref __binding_0,
                        def_id: ref __binding_1,
                        body: ref __binding_2,
                        span: ref __binding_3 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2521pub struct AnonConst {
2522    #[stable_hash(ignore)]
2523    pub hir_id: HirId,
2524    pub def_id: LocalDefId,
2525    pub body: BodyId,
2526    pub span: Span,
2527}
2528
2529/// An inline constant expression `const { something }`.
2530#[derive(#[automatically_derived]
impl ::core::marker::Copy for ConstBlock { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ConstBlock {
    #[inline]
    fn clone(&self) -> ConstBlock {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<LocalDefId>;
        let _: ::core::clone::AssertParamIsClone<BodyId>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for ConstBlock {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "ConstBlock",
            "hir_id", &self.hir_id, "def_id", &self.def_id, "body",
            &&self.body)
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for ConstBlock {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    ConstBlock {
                        hir_id: ref __binding_0,
                        def_id: ref __binding_1,
                        body: ref __binding_2 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2531pub struct ConstBlock {
2532    #[stable_hash(ignore)]
2533    pub hir_id: HirId,
2534    pub def_id: LocalDefId,
2535    pub body: BodyId,
2536}
2537
2538/// An expression.
2539///
2540/// For more details, see the [rust lang reference].
2541/// Note that the reference does not document nightly-only features.
2542/// There may be also slight differences in the names and representation of AST nodes between
2543/// the compiler and the reference.
2544///
2545/// [rust lang reference]: https://doc.rust-lang.org/reference/expressions.html
2546#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Expr<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "Expr",
            "hir_id", &self.hir_id, "kind", &self.kind, "span", &&self.span)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Expr<'hir> {
    #[inline]
    fn clone(&self) -> Expr<'hir> {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<ExprKind<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for Expr<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Expr<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Expr {
                        hir_id: ref __binding_0,
                        kind: ref __binding_1,
                        span: ref __binding_2 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2547pub struct Expr<'hir> {
2548    #[stable_hash(ignore)]
2549    pub hir_id: HirId,
2550    pub kind: ExprKind<'hir>,
2551    pub span: Span,
2552}
2553
2554impl Expr<'_> {
2555    pub fn precedence(&self, has_attr: &dyn Fn(HirId) -> bool) -> ExprPrecedence {
2556        let prefix_attrs_precedence = || -> ExprPrecedence {
2557            if has_attr(self.hir_id) { ExprPrecedence::Prefix } else { ExprPrecedence::Unambiguous }
2558        };
2559
2560        match &self.kind {
2561            ExprKind::Closure(closure) => match closure.fn_decl.output {
2562                FnRetTy::DefaultReturn(_) => ExprPrecedence::Jump,
2563                FnRetTy::Return(_) => prefix_attrs_precedence(),
2564            },
2565
2566            ExprKind::Break(..)
2567            | ExprKind::Ret(..)
2568            | ExprKind::Yield(..)
2569            | ExprKind::Become(..) => ExprPrecedence::Jump,
2570
2571            // Binop-like expr kinds, handled by `AssocOp`.
2572            ExprKind::Binary(op, ..) => op.node.precedence(),
2573            ExprKind::Cast(..) => ExprPrecedence::Cast,
2574
2575            ExprKind::Assign(..) | ExprKind::AssignOp(..) => ExprPrecedence::Assign,
2576
2577            // Unary, prefix
2578            ExprKind::AddrOf(..) => ExprPrecedence::Prefix,
2579
2580            // Here `let pats = expr` has `let pats =` as a "unary" prefix of `expr`.
2581            // However, this is not exactly right. When `let _ = a` is the LHS of a binop we
2582            // need parens sometimes. E.g. we can print `(let _ = a) && b` as `let _ = a && b`
2583            // but we need to print `(let _ = a) < b` as-is with parens.
2584            ExprKind::Let(..) | ExprKind::Unary(..) => ExprPrecedence::Prefix,
2585
2586            // Need parens if and only if there are prefix attributes.
2587            ExprKind::Array(_)
2588            | ExprKind::Block(..)
2589            | ExprKind::Call(..)
2590            | ExprKind::ConstBlock(_)
2591            | ExprKind::Continue(..)
2592            | ExprKind::Field(..)
2593            | ExprKind::If(..)
2594            | ExprKind::Index(..)
2595            | ExprKind::InlineAsm(..)
2596            | ExprKind::Lit(_)
2597            | ExprKind::Loop(..)
2598            | ExprKind::Match(..)
2599            | ExprKind::MethodCall(..)
2600            | ExprKind::OffsetOf(..)
2601            | ExprKind::Path(..)
2602            | ExprKind::Repeat(..)
2603            | ExprKind::Struct(..)
2604            | ExprKind::Tup(_)
2605            | ExprKind::Type(..)
2606            | ExprKind::UnsafeBinderCast(..)
2607            | ExprKind::Use(..)
2608            | ExprKind::Err(_) => prefix_attrs_precedence(),
2609
2610            ExprKind::DropTemps(expr, ..) => expr.precedence(has_attr),
2611        }
2612    }
2613
2614    /// Whether this looks like a place expr, without checking for deref
2615    /// adjustments.
2616    /// This will return `true` in some potentially surprising cases such as
2617    /// `CONSTANT.field`.
2618    pub fn is_syntactic_place_expr(&self) -> bool {
2619        self.is_place_expr(|_| true)
2620    }
2621
2622    /// Whether this is a place expression.
2623    ///
2624    /// `allow_projections_from` should return `true` if indexing a field or index expression based
2625    /// on the given expression should be considered a place expression.
2626    pub fn is_place_expr(&self, mut allow_projections_from: impl FnMut(&Self) -> bool) -> bool {
2627        match self.kind {
2628            ExprKind::Path(QPath::Resolved(_, ref path)) => {
2629                #[allow(non_exhaustive_omitted_patterns)] match path.res {
    Res::Local(..) | Res::Def(DefKind::Static { .. }, _) | Res::Err => true,
    _ => false,
}matches!(path.res, Res::Local(..) | Res::Def(DefKind::Static { .. }, _) | Res::Err)
2630            }
2631
2632            // Type ascription inherits its place expression kind from its
2633            // operand. See:
2634            // https://github.com/rust-lang/rfcs/blob/master/text/0803-type-ascription.md#type-ascription-and-temporaries
2635            ExprKind::Type(ref e, _) => e.is_place_expr(allow_projections_from),
2636
2637            // Unsafe binder cast preserves place-ness of the sub-expression.
2638            ExprKind::UnsafeBinderCast(_, e, _) => e.is_place_expr(allow_projections_from),
2639
2640            ExprKind::Unary(UnOp::Deref, _) => true,
2641
2642            ExprKind::Field(ref base, _) | ExprKind::Index(ref base, _, _) => {
2643                allow_projections_from(base) || base.is_place_expr(allow_projections_from)
2644            }
2645
2646            // Suppress errors for bad expressions.
2647            ExprKind::Err(_guar)
2648            | ExprKind::Let(&LetExpr { recovered: ast::Recovered::Yes(_guar), .. }) => true,
2649
2650            // Partially qualified paths in expressions can only legally
2651            // refer to associated items which are always rvalues.
2652            ExprKind::Path(QPath::TypeRelative(..))
2653            | ExprKind::Call(..)
2654            | ExprKind::MethodCall(..)
2655            | ExprKind::Use(..)
2656            | ExprKind::Struct(..)
2657            | ExprKind::Tup(..)
2658            | ExprKind::If(..)
2659            | ExprKind::Match(..)
2660            | ExprKind::Closure { .. }
2661            | ExprKind::Block(..)
2662            | ExprKind::Repeat(..)
2663            | ExprKind::Array(..)
2664            | ExprKind::Break(..)
2665            | ExprKind::Continue(..)
2666            | ExprKind::Ret(..)
2667            | ExprKind::Become(..)
2668            | ExprKind::Let(..)
2669            | ExprKind::Loop(..)
2670            | ExprKind::Assign(..)
2671            | ExprKind::InlineAsm(..)
2672            | ExprKind::OffsetOf(..)
2673            | ExprKind::AssignOp(..)
2674            | ExprKind::Lit(_)
2675            | ExprKind::ConstBlock(..)
2676            | ExprKind::Unary(..)
2677            | ExprKind::AddrOf(..)
2678            | ExprKind::Binary(..)
2679            | ExprKind::Yield(..)
2680            | ExprKind::Cast(..)
2681            | ExprKind::DropTemps(..) => false,
2682        }
2683    }
2684
2685    /// If this is a desugared range expression,
2686    /// returns the span of the range without desugaring context.
2687    pub fn range_span(&self) -> Option<Span> {
2688        is_range_literal(self).then(|| self.span.parent_callsite().unwrap())
2689    }
2690
2691    /// Check if expression is an integer literal that can be used
2692    /// where `usize` is expected.
2693    pub fn is_size_lit(&self) -> bool {
2694        #[allow(non_exhaustive_omitted_patterns)] match self.kind {
    ExprKind::Lit(Lit {
        node: LitKind::Int(_,
            LitIntType::Unsuffixed | LitIntType::Unsigned(UintTy::Usize)), ..
        }) => true,
    _ => false,
}matches!(
2695            self.kind,
2696            ExprKind::Lit(Lit {
2697                node: LitKind::Int(_, LitIntType::Unsuffixed | LitIntType::Unsigned(UintTy::Usize)),
2698                ..
2699            })
2700        )
2701    }
2702
2703    /// If `Self.kind` is `ExprKind::DropTemps(expr)`, drill down until we get a non-`DropTemps`
2704    /// `Expr`. This is used in suggestions to ignore this `ExprKind` as it is semantically
2705    /// silent, only signaling the ownership system. By doing this, suggestions that check the
2706    /// `ExprKind` of any given `Expr` for presentation don't have to care about `DropTemps`
2707    /// beyond remembering to call this function before doing analysis on it.
2708    pub fn peel_drop_temps(&self) -> &Self {
2709        let mut expr = self;
2710        while let ExprKind::DropTemps(inner) = &expr.kind {
2711            expr = inner;
2712        }
2713        expr
2714    }
2715
2716    pub fn peel_blocks(&self) -> &Self {
2717        let mut expr = self;
2718        while let ExprKind::Block(Block { expr: Some(inner), .. }, _) = &expr.kind {
2719            expr = inner;
2720        }
2721        expr
2722    }
2723
2724    pub fn peel_borrows(&self) -> &Self {
2725        let mut expr = self;
2726        while let ExprKind::AddrOf(.., inner) = &expr.kind {
2727            expr = inner;
2728        }
2729        expr
2730    }
2731
2732    pub fn can_have_side_effects(&self) -> bool {
2733        match self.peel_drop_temps().kind {
2734            ExprKind::Path(_) | ExprKind::Lit(_) | ExprKind::OffsetOf(..) | ExprKind::Use(..) => {
2735                false
2736            }
2737            ExprKind::Type(base, _)
2738            | ExprKind::Unary(_, base)
2739            | ExprKind::Field(base, _)
2740            | ExprKind::Index(base, _, _)
2741            | ExprKind::AddrOf(.., base)
2742            | ExprKind::Cast(base, _)
2743            | ExprKind::UnsafeBinderCast(_, base, _) => {
2744                // This isn't exactly true for `Index` and all `Unary`, but we are using this
2745                // method exclusively for diagnostics and there's a *cultural* pressure against
2746                // them being used only for its side-effects.
2747                base.can_have_side_effects()
2748            }
2749            ExprKind::Binary(_, lhs, rhs) => {
2750                // This isn't exactly true for all `Binary`, but we are using this
2751                // method exclusively for diagnostics and there's a *cultural* pressure against
2752                // them being used only for its side-effects.
2753                lhs.can_have_side_effects() || rhs.can_have_side_effects()
2754            }
2755            ExprKind::Struct(_, fields, init) => {
2756                let init_side_effects = match init {
2757                    StructTailExpr::Base(init) => init.can_have_side_effects(),
2758                    StructTailExpr::DefaultFields(_)
2759                    | StructTailExpr::None
2760                    | StructTailExpr::NoneWithError(_) => false,
2761                };
2762                fields.iter().map(|field| field.expr).any(|e| e.can_have_side_effects())
2763                    || init_side_effects
2764            }
2765
2766            ExprKind::Array(args)
2767            | ExprKind::Tup(args)
2768            | ExprKind::Call(
2769                Expr {
2770                    kind:
2771                        ExprKind::Path(QPath::Resolved(
2772                            None,
2773                            Path { res: Res::Def(DefKind::Ctor(_, CtorKind::Fn), _), .. },
2774                        )),
2775                    ..
2776                },
2777                args,
2778            ) => args.iter().any(|arg| arg.can_have_side_effects()),
2779            ExprKind::Repeat(arg, _) => arg.can_have_side_effects(),
2780            ExprKind::If(..)
2781            | ExprKind::Match(..)
2782            | ExprKind::MethodCall(..)
2783            | ExprKind::Call(..)
2784            | ExprKind::Closure { .. }
2785            | ExprKind::Block(..)
2786            | ExprKind::Break(..)
2787            | ExprKind::Continue(..)
2788            | ExprKind::Ret(..)
2789            | ExprKind::Become(..)
2790            | ExprKind::Let(..)
2791            | ExprKind::Loop(..)
2792            | ExprKind::Assign(..)
2793            | ExprKind::InlineAsm(..)
2794            | ExprKind::AssignOp(..)
2795            | ExprKind::ConstBlock(..)
2796            | ExprKind::Yield(..)
2797            | ExprKind::DropTemps(..)
2798            | ExprKind::Err(_) => true,
2799        }
2800    }
2801
2802    /// To a first-order approximation, is this a pattern?
2803    pub fn is_approximately_pattern(&self) -> bool {
2804        match &self.kind {
2805            ExprKind::Array(_)
2806            | ExprKind::Call(..)
2807            | ExprKind::Tup(_)
2808            | ExprKind::Lit(_)
2809            | ExprKind::Path(_)
2810            | ExprKind::Struct(..) => true,
2811            _ => false,
2812        }
2813    }
2814
2815    /// Whether this and the `other` expression are the same for purposes of an indexing operation.
2816    ///
2817    /// This is only used for diagnostics to see if we have things like `foo[i]` where `foo` is
2818    /// borrowed multiple times with `i`.
2819    pub fn equivalent_for_indexing(&self, other: &Expr<'_>) -> bool {
2820        match (self.kind, other.kind) {
2821            (ExprKind::Lit(lit1), ExprKind::Lit(lit2)) => lit1.node == lit2.node,
2822            (
2823                ExprKind::Path(QPath::Resolved(None, path1)),
2824                ExprKind::Path(QPath::Resolved(None, path2)),
2825            ) => path1.res == path2.res,
2826            (
2827                ExprKind::Struct(
2828                    &QPath::Resolved(None, &Path { res: Res::Def(_, path1_def_id), .. }),
2829                    args1,
2830                    StructTailExpr::None,
2831                ),
2832                ExprKind::Struct(
2833                    &QPath::Resolved(None, &Path { res: Res::Def(_, path2_def_id), .. }),
2834                    args2,
2835                    StructTailExpr::None,
2836                ),
2837            ) => {
2838                path2_def_id == path1_def_id
2839                    && is_range_literal(self)
2840                    && is_range_literal(other)
2841                    && std::iter::zip(args1, args2)
2842                        .all(|(a, b)| a.expr.equivalent_for_indexing(b.expr))
2843            }
2844            _ => false,
2845        }
2846    }
2847
2848    pub fn method_ident(&self) -> Option<Ident> {
2849        match self.kind {
2850            ExprKind::MethodCall(receiver_method, ..) => Some(receiver_method.ident),
2851            ExprKind::Unary(_, expr) | ExprKind::AddrOf(.., expr) => expr.method_ident(),
2852            _ => None,
2853        }
2854    }
2855}
2856
2857/// Checks if the specified expression is a built-in range literal.
2858/// (See: `LoweringContext::lower_expr()`).
2859pub fn is_range_literal(expr: &Expr<'_>) -> bool {
2860    if let ExprKind::Struct(QPath::Resolved(None, path), _, StructTailExpr::None) = expr.kind
2861        && let [.., segment] = path.segments
2862        && let sym::RangeFrom
2863        | sym::RangeFull
2864        | sym::Range
2865        | sym::RangeToInclusive
2866        | sym::RangeTo
2867        | sym::RangeFromCopy
2868        | sym::RangeCopy
2869        | sym::RangeInclusiveCopy
2870        | sym::RangeToInclusiveCopy = segment.ident.name
2871        && expr.span.is_desugaring(DesugaringKind::RangeExpr)
2872    {
2873        true
2874    } else if let ExprKind::Call(func, _) = &expr.kind
2875        && let ExprKind::Path(QPath::Resolved(None, path)) = func.kind
2876        && let [.., segment] = path.segments
2877        && let sym::range_inclusive_new = segment.ident.name
2878        && expr.span.is_desugaring(DesugaringKind::RangeExpr)
2879    {
2880        true
2881    } else {
2882        false
2883    }
2884}
2885
2886/// Checks if the specified expression needs parentheses for prefix
2887/// or postfix suggestions to be valid.
2888/// For example, `a + b` requires parentheses to suggest `&(a + b)`,
2889/// but just `a` does not.
2890/// Similarly, `(a + b).c()` also requires parentheses.
2891/// This should not be used for other types of suggestions.
2892pub fn expr_needs_parens(expr: &Expr<'_>) -> bool {
2893    match expr.kind {
2894        // parenthesize if needed (Issue #46756)
2895        ExprKind::Cast(_, _) | ExprKind::Binary(_, _, _) => true,
2896        // parenthesize borrows of range literals (Issue #54505)
2897        _ if is_range_literal(expr) => true,
2898        _ => false,
2899    }
2900}
2901
2902#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for ExprKind<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ExprKind::ConstBlock(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "ConstBlock", &__self_0),
            ExprKind::Array(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Array",
                    &__self_0),
            ExprKind::Call(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Call",
                    __self_0, &__self_1),
            ExprKind::MethodCall(__self_0, __self_1, __self_2, __self_3) =>
                ::core::fmt::Formatter::debug_tuple_field4_finish(f,
                    "MethodCall", __self_0, __self_1, __self_2, &__self_3),
            ExprKind::Use(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Use",
                    __self_0, &__self_1),
            ExprKind::Tup(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Tup",
                    &__self_0),
            ExprKind::Binary(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Binary",
                    __self_0, __self_1, &__self_2),
            ExprKind::Unary(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Unary",
                    __self_0, &__self_1),
            ExprKind::Lit(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Lit",
                    &__self_0),
            ExprKind::Cast(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Cast",
                    __self_0, &__self_1),
            ExprKind::Type(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Type",
                    __self_0, &__self_1),
            ExprKind::DropTemps(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "DropTemps", &__self_0),
            ExprKind::Let(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Let",
                    &__self_0),
            ExprKind::If(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "If",
                    __self_0, __self_1, &__self_2),
            ExprKind::Loop(__self_0, __self_1, __self_2, __self_3) =>
                ::core::fmt::Formatter::debug_tuple_field4_finish(f, "Loop",
                    __self_0, __self_1, __self_2, &__self_3),
            ExprKind::Match(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Match",
                    __self_0, __self_1, &__self_2),
            ExprKind::Closure(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Closure", &__self_0),
            ExprKind::Block(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Block",
                    __self_0, &__self_1),
            ExprKind::Assign(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Assign",
                    __self_0, __self_1, &__self_2),
            ExprKind::AssignOp(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f,
                    "AssignOp", __self_0, __self_1, &__self_2),
            ExprKind::Field(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Field",
                    __self_0, &__self_1),
            ExprKind::Index(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Index",
                    __self_0, __self_1, &__self_2),
            ExprKind::Path(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Path",
                    &__self_0),
            ExprKind::AddrOf(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "AddrOf",
                    __self_0, __self_1, &__self_2),
            ExprKind::Break(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Break",
                    __self_0, &__self_1),
            ExprKind::Continue(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Continue", &__self_0),
            ExprKind::Ret(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Ret",
                    &__self_0),
            ExprKind::Become(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Become",
                    &__self_0),
            ExprKind::InlineAsm(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "InlineAsm", &__self_0),
            ExprKind::OffsetOf(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f,
                    "OffsetOf", __self_0, &__self_1),
            ExprKind::Struct(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Struct",
                    __self_0, __self_1, &__self_2),
            ExprKind::Repeat(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Repeat",
                    __self_0, &__self_1),
            ExprKind::Yield(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Yield",
                    __self_0, &__self_1),
            ExprKind::UnsafeBinderCast(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f,
                    "UnsafeBinderCast", __self_0, __self_1, &__self_2),
            ExprKind::Err(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Err",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for ExprKind<'hir> {
    #[inline]
    fn clone(&self) -> ExprKind<'hir> {
        let _: ::core::clone::AssertParamIsClone<ConstBlock>;
        let _: ::core::clone::AssertParamIsClone<&'hir [Expr<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [Expr<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<&'hir PathSegment<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [Expr<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [Expr<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<BinOp>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<UnOp>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Lit>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir LetExpr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Expr<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Block<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Option<Label>>;
        let _: ::core::clone::AssertParamIsClone<LoopSource>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [Arm<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<MatchSource>;
        let _: ::core::clone::AssertParamIsClone<&'hir Closure<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Block<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Option<Label>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<AssignOp>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<QPath<'hir>>;
        let _: ::core::clone::AssertParamIsClone<BorrowKind>;
        let _: ::core::clone::AssertParamIsClone<Mutability>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Destination>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Expr<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Expr<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir InlineAsm<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [Ident]>;
        let _: ::core::clone::AssertParamIsClone<&'hir QPath<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [ExprField<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<StructTailExpr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir ConstArg<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<YieldSource>;
        let _: ::core::clone::AssertParamIsClone<UnsafeBinderCastKind>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Ty<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<rustc_span::ErrorGuaranteed>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for ExprKind<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            ExprKind<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    ExprKind::ConstBlock(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Array(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Call(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::MethodCall(ref __binding_0, ref __binding_1,
                        ref __binding_2, ref __binding_3) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Use(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Tup(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Binary(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Unary(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Lit(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Cast(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Type(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::DropTemps(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Let(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::If(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Loop(ref __binding_0, ref __binding_1,
                        ref __binding_2, ref __binding_3) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Match(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Closure(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Block(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Assign(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::AssignOp(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Field(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Index(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Path(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::AddrOf(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Break(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Continue(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Ret(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Become(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::InlineAsm(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::OffsetOf(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Struct(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Repeat(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Yield(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::UnsafeBinderCast(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ExprKind::Err(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
2903pub enum ExprKind<'hir> {
2904    /// Allow anonymous constants from an inline `const` block
2905    ConstBlock(ConstBlock),
2906    /// An array (e.g., `[a, b, c, d]`).
2907    Array(&'hir [Expr<'hir>]),
2908    /// A function call.
2909    ///
2910    /// The first field resolves to the function itself (usually an `ExprKind::Path`),
2911    /// and the second field is the list of arguments.
2912    /// This also represents calling the constructor of
2913    /// tuple-like ADTs such as tuple structs and enum variants.
2914    Call(&'hir Expr<'hir>, &'hir [Expr<'hir>]),
2915    /// A method call (e.g., `x.foo::<'static, Bar, Baz>(a, b, c, d)`).
2916    ///
2917    /// The `PathSegment` represents the method name and its generic arguments
2918    /// (within the angle brackets).
2919    /// The `&Expr` is the expression that evaluates
2920    /// to the object on which the method is being called on (the receiver),
2921    /// and the `&[Expr]` is the rest of the arguments.
2922    /// Thus, `x.foo::<Bar, Baz>(a, b, c, d)` is represented as
2923    /// `ExprKind::MethodCall(PathSegment { foo, [Bar, Baz] }, x, [a, b, c, d], span)`.
2924    /// The final `Span` represents the span of the function and arguments
2925    /// (e.g. `foo::<Bar, Baz>(a, b, c, d)` in `x.foo::<Bar, Baz>(a, b, c, d)`
2926    ///
2927    /// To resolve the called method to a `DefId`, call [`type_dependent_def_id`] with
2928    /// the `hir_id` of the `MethodCall` node itself.
2929    ///
2930    /// [`type_dependent_def_id`]: ../../rustc_middle/ty/struct.TypeckResults.html#method.type_dependent_def_id
2931    MethodCall(&'hir PathSegment<'hir>, &'hir Expr<'hir>, &'hir [Expr<'hir>], Span),
2932    /// An use expression (e.g., `var.use`).
2933    Use(&'hir Expr<'hir>, Span),
2934    /// A tuple (e.g., `(a, b, c, d)`).
2935    Tup(&'hir [Expr<'hir>]),
2936    /// A binary operation (e.g., `a + b`, `a * b`).
2937    Binary(BinOp, &'hir Expr<'hir>, &'hir Expr<'hir>),
2938    /// A unary operation (e.g., `!x`, `*x`).
2939    Unary(UnOp, &'hir Expr<'hir>),
2940    /// A literal (e.g., `1`, `"foo"`).
2941    Lit(Lit),
2942    /// A cast (e.g., `foo as f64`).
2943    Cast(&'hir Expr<'hir>, &'hir Ty<'hir>),
2944    /// A type ascription (e.g., `x: Foo`). See RFC 3307.
2945    Type(&'hir Expr<'hir>, &'hir Ty<'hir>),
2946    /// Wraps the expression in a terminating scope.
2947    /// This makes it semantically equivalent to `{ let _t = expr; _t }`.
2948    ///
2949    /// This construct only exists to tweak the drop order in AST lowering.
2950    /// An example of that is the desugaring of `for` loops.
2951    DropTemps(&'hir Expr<'hir>),
2952    /// A `let $pat = $expr` expression.
2953    ///
2954    /// These are not [`LetStmt`] and only occur as expressions.
2955    /// The `let Some(x) = foo()` in `if let Some(x) = foo()` is an example of `Let(..)`.
2956    Let(&'hir LetExpr<'hir>),
2957    /// An `if` block, with an optional else block.
2958    ///
2959    /// I.e., `if <expr> { <expr> } else { <expr> }`.
2960    ///
2961    /// The "then" expr is always `ExprKind::Block`. If present, the "else" expr is always
2962    /// `ExprKind::Block` (for `else`) or `ExprKind::If` (for `else if`).
2963    /// Note that using an `Expr` instead of a `Block` for the "then" part is intentional,
2964    /// as it simplifies the type coercion machinery.
2965    If(&'hir Expr<'hir>, &'hir Expr<'hir>, Option<&'hir Expr<'hir>>),
2966    /// A conditionless loop (can be exited with `break`, `continue`, or `return`).
2967    ///
2968    /// I.e., `'label: loop { <block> }`.
2969    ///
2970    /// The `Span` is the loop header (`for x in y`/`while let pat = expr`).
2971    Loop(&'hir Block<'hir>, Option<Label>, LoopSource, Span),
2972    /// A `match` block, with a source that indicates whether or not it is
2973    /// the result of a desugaring, and if so, which kind.
2974    Match(&'hir Expr<'hir>, &'hir [Arm<'hir>], MatchSource),
2975    /// A closure (e.g., `move |a, b, c| {a + b + c}`).
2976    ///
2977    /// The `Span` is the argument block `|...|`.
2978    ///
2979    /// This may also be a coroutine literal or an `async block` as indicated by the
2980    /// `Option<Movability>`.
2981    Closure(&'hir Closure<'hir>),
2982    /// A block (e.g., `'label: { ... }`).
2983    Block(&'hir Block<'hir>, Option<Label>),
2984
2985    /// An assignment (e.g., `a = foo()`).
2986    Assign(&'hir Expr<'hir>, &'hir Expr<'hir>, Span),
2987    /// An assignment with an operator.
2988    ///
2989    /// E.g., `a += 1`.
2990    AssignOp(AssignOp, &'hir Expr<'hir>, &'hir Expr<'hir>),
2991    /// Access of a named (e.g., `obj.foo`) or unnamed (e.g., `obj.0`) struct or tuple field.
2992    Field(&'hir Expr<'hir>, Ident),
2993    /// An indexing operation (`foo[2]`).
2994    /// Similar to [`ExprKind::MethodCall`], the final `Span` represents the span of the brackets
2995    /// and index.
2996    Index(&'hir Expr<'hir>, &'hir Expr<'hir>, Span),
2997
2998    /// Path to a definition, possibly containing lifetime or type parameters.
2999    Path(QPath<'hir>),
3000
3001    /// A referencing operation (i.e., `&a` or `&mut a`).
3002    AddrOf(BorrowKind, Mutability, &'hir Expr<'hir>),
3003    /// A `break`, with an optional label to break.
3004    Break(Destination, Option<&'hir Expr<'hir>>),
3005    /// A `continue`, with an optional label.
3006    Continue(Destination),
3007    /// A `return`, with an optional value to be returned.
3008    Ret(Option<&'hir Expr<'hir>>),
3009    /// A `become`, with the value to be returned.
3010    Become(&'hir Expr<'hir>),
3011
3012    /// Inline assembly (from `asm!`), with its outputs and inputs.
3013    InlineAsm(&'hir InlineAsm<'hir>),
3014
3015    /// Field offset (`offset_of!`)
3016    OffsetOf(&'hir Ty<'hir>, &'hir [Ident]),
3017
3018    /// A struct or struct-like variant literal expression.
3019    ///
3020    /// E.g., `Foo {x: 1, y: 2}`, or `Foo {x: 1, .. base}`,
3021    /// where `base` is the `Option<Expr>`.
3022    Struct(&'hir QPath<'hir>, &'hir [ExprField<'hir>], StructTailExpr<'hir>),
3023
3024    /// An array literal constructed from one repeated element.
3025    ///
3026    /// E.g., `[1; 5]`. The first expression is the element
3027    /// to be repeated; the second is the number of times to repeat it.
3028    Repeat(&'hir Expr<'hir>, &'hir ConstArg<'hir>),
3029
3030    /// A suspension point for coroutines (i.e., `yield <expr>`).
3031    Yield(&'hir Expr<'hir>, YieldSource),
3032
3033    /// Operators which can be used to interconvert `unsafe` binder types.
3034    /// e.g. `unsafe<'a> &'a i32` <=> `&i32`.
3035    UnsafeBinderCast(UnsafeBinderCastKind, &'hir Expr<'hir>, Option<&'hir Ty<'hir>>),
3036
3037    /// A placeholder for an expression that wasn't syntactically well formed in some way.
3038    Err(rustc_span::ErrorGuaranteed),
3039}
3040
3041#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for StructTailExpr<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            StructTailExpr::None =>
                ::core::fmt::Formatter::write_str(f, "None"),
            StructTailExpr::Base(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Base",
                    &__self_0),
            StructTailExpr::DefaultFields(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "DefaultFields", &__self_0),
            StructTailExpr::NoneWithError(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "NoneWithError", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for StructTailExpr<'hir> {
    #[inline]
    fn clone(&self) -> StructTailExpr<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<ErrorGuaranteed>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for StructTailExpr<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            StructTailExpr<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    StructTailExpr::None => {}
                    StructTailExpr::Base(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    StructTailExpr::DefaultFields(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    StructTailExpr::NoneWithError(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3042pub enum StructTailExpr<'hir> {
3043    /// A struct expression where all the fields are explicitly enumerated: `Foo { a, b }`.
3044    None,
3045    /// A struct expression with a "base", an expression of the same type as the outer struct that
3046    /// will be used to populate any fields not explicitly mentioned: `Foo { ..base }`
3047    Base(&'hir Expr<'hir>),
3048    /// A struct expression with a `..` tail but no "base" expression. The values from the struct
3049    /// fields' default values will be used to populate any fields not explicitly mentioned:
3050    /// `Foo { .. }`.
3051    DefaultFields(Span),
3052    /// No trailing `..` was written, and also, a parse error occurred inside the struct braces.
3053    ///
3054    /// This struct should be treated similarly to as if it had an `..` in it,
3055    /// in particular rather than reporting missing fields, because the parse error
3056    /// makes which fields the struct was intended to have not fully known.
3057    NoneWithError(ErrorGuaranteed),
3058}
3059
3060/// Represents an optionally `Self`-qualified value/type path or associated extension.
3061///
3062/// To resolve the path to a `DefId`, call [`qpath_res`].
3063///
3064/// [`qpath_res`]: ../../rustc_middle/ty/struct.TypeckResults.html#method.qpath_res
3065#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for QPath<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            QPath::Resolved(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f,
                    "Resolved", __self_0, &__self_1),
            QPath::TypeRelative(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f,
                    "TypeRelative", __self_0, &__self_1),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for QPath<'hir> {
    #[inline]
    fn clone(&self) -> QPath<'hir> {
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Ty<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Path<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir PathSegment<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for QPath<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            QPath<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    QPath::Resolved(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    QPath::TypeRelative(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3066pub enum QPath<'hir> {
3067    /// Path to a definition, optionally "fully-qualified" with a `Self`
3068    /// type, if the path points to an associated item in a trait.
3069    ///
3070    /// E.g., an unqualified path like `Clone::clone` has `None` for `Self`,
3071    /// while `<Vec<T> as Clone>::clone` has `Some(Vec<T>)` for `Self`,
3072    /// even though they both have the same two-segment `Clone::clone` `Path`.
3073    Resolved(Option<&'hir Ty<'hir>>, &'hir Path<'hir>),
3074
3075    /// Type-related paths (e.g., `<T>::default` or `<T>::Output`).
3076    /// Will be resolved by type-checking to an associated item.
3077    ///
3078    /// UFCS source paths can desugar into this, with `Vec::new` turning into
3079    /// `<Vec>::new`, and `T::X::Y::method` into `<<<T>::X>::Y>::method`,
3080    /// the `X` and `Y` nodes each being a `TyKind::Path(QPath::TypeRelative(..))`.
3081    TypeRelative(&'hir Ty<'hir>, &'hir PathSegment<'hir>),
3082}
3083
3084impl<'hir> QPath<'hir> {
3085    /// Returns the span of this `QPath`.
3086    pub fn span(&self) -> Span {
3087        match *self {
3088            QPath::Resolved(_, path) => path.span,
3089            QPath::TypeRelative(qself, ps) => qself.span.to(ps.ident.span),
3090        }
3091    }
3092
3093    /// Returns the span of the qself of this `QPath`. For example, `()` in
3094    /// `<() as Trait>::method`.
3095    pub fn qself_span(&self) -> Span {
3096        match *self {
3097            QPath::Resolved(_, path) => path.span,
3098            QPath::TypeRelative(qself, _) => qself.span,
3099        }
3100    }
3101}
3102
3103/// Hints at the original code for a let statement.
3104#[derive(#[automatically_derived]
impl ::core::marker::Copy for LocalSource { }Copy, #[automatically_derived]
impl ::core::clone::Clone for LocalSource {
    #[inline]
    fn clone(&self) -> LocalSource { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for LocalSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                LocalSource::Normal => "Normal",
                LocalSource::AsyncFn => "AsyncFn",
                LocalSource::AwaitDesugar => "AwaitDesugar",
                LocalSource::AssignDesugar => "AssignDesugar",
                LocalSource::Contract => "Contract",
            })
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for LocalSource
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    LocalSource::Normal => {}
                    LocalSource::AsyncFn => {}
                    LocalSource::AwaitDesugar => {}
                    LocalSource::AssignDesugar => {}
                    LocalSource::Contract => {}
                }
            }
        }
    };StableHash)]
3105pub enum LocalSource {
3106    /// A `match _ { .. }`.
3107    Normal,
3108    /// When lowering async functions, we create locals within the `async move` so that
3109    /// all parameters are dropped after the future is polled.
3110    ///
3111    /// ```ignore (pseudo-Rust)
3112    /// async fn foo(<pattern> @ x: Type) {
3113    ///     async move {
3114    ///         let <pattern> = x;
3115    ///     }
3116    /// }
3117    /// ```
3118    AsyncFn,
3119    /// A desugared `<expr>.await`.
3120    AwaitDesugar,
3121    /// A desugared `expr = expr`, where the LHS is a tuple, struct, array or underscore expression.
3122    AssignDesugar,
3123    /// A contract `#[ensures(..)]` attribute injects a let binding for the check that runs at point of return.
3124    Contract,
3125}
3126
3127/// Hints at the original code for a `match _ { .. }`.
3128#[derive(#[automatically_derived]
impl ::core::marker::Copy for MatchSource { }Copy, #[automatically_derived]
impl ::core::clone::Clone for MatchSource {
    #[inline]
    fn clone(&self) -> MatchSource {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for MatchSource {
    #[inline]
    fn eq(&self, other: &MatchSource) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (MatchSource::TryDesugar(__self_0),
                    MatchSource::TryDesugar(__arg1_0)) => __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for MatchSource {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<HirId>;
    }
}Eq, #[automatically_derived]
impl ::core::hash::Hash for MatchSource {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state);
        match self {
            MatchSource::TryDesugar(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            _ => {}
        }
    }
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for MatchSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            MatchSource::Normal =>
                ::core::fmt::Formatter::write_str(f, "Normal"),
            MatchSource::Postfix =>
                ::core::fmt::Formatter::write_str(f, "Postfix"),
            MatchSource::ForLoopDesugar =>
                ::core::fmt::Formatter::write_str(f, "ForLoopDesugar"),
            MatchSource::TryDesugar(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "TryDesugar", &__self_0),
            MatchSource::AwaitDesugar =>
                ::core::fmt::Formatter::write_str(f, "AwaitDesugar"),
            MatchSource::FormatArgs =>
                ::core::fmt::Formatter::write_str(f, "FormatArgs"),
        }
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for MatchSource
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    MatchSource::Normal => {}
                    MatchSource::Postfix => {}
                    MatchSource::ForLoopDesugar => {}
                    MatchSource::TryDesugar(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    MatchSource::AwaitDesugar => {}
                    MatchSource::FormatArgs => {}
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for MatchSource {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        MatchSource::Normal => { 0usize }
                        MatchSource::Postfix => { 1usize }
                        MatchSource::ForLoopDesugar => { 2usize }
                        MatchSource::TryDesugar(ref __binding_0) => { 3usize }
                        MatchSource::AwaitDesugar => { 4usize }
                        MatchSource::FormatArgs => { 5usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    MatchSource::Normal => {}
                    MatchSource::Postfix => {}
                    MatchSource::ForLoopDesugar => {}
                    MatchSource::TryDesugar(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    MatchSource::AwaitDesugar => {}
                    MatchSource::FormatArgs => {}
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for MatchSource {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { MatchSource::Normal }
                    1usize => { MatchSource::Postfix }
                    2usize => { MatchSource::ForLoopDesugar }
                    3usize => {
                        MatchSource::TryDesugar(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    4usize => { MatchSource::AwaitDesugar }
                    5usize => { MatchSource::FormatArgs }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `MatchSource`, expected 0..6, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable)]
3129pub enum MatchSource {
3130    /// A `match _ { .. }`.
3131    Normal,
3132    /// A `expr.match { .. }`.
3133    Postfix,
3134    /// A desugared `for _ in _ { .. }` loop.
3135    ForLoopDesugar,
3136    /// A desugared `?` operator.
3137    TryDesugar(HirId),
3138    /// A desugared `<expr>.await`.
3139    AwaitDesugar,
3140    /// A desugared `format_args!()`.
3141    FormatArgs,
3142}
3143
3144impl MatchSource {
3145    #[inline]
3146    pub const fn name(self) -> &'static str {
3147        use MatchSource::*;
3148        match self {
3149            Normal => "match",
3150            Postfix => ".match",
3151            ForLoopDesugar => "for",
3152            TryDesugar(_) => "?",
3153            AwaitDesugar => ".await",
3154            FormatArgs => "format_args!()",
3155        }
3156    }
3157}
3158
3159/// The loop type that yielded an `ExprKind::Loop`.
3160#[derive(#[automatically_derived]
impl ::core::marker::Copy for LoopSource { }Copy, #[automatically_derived]
impl ::core::clone::Clone for LoopSource {
    #[inline]
    fn clone(&self) -> LoopSource { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for LoopSource {
    #[inline]
    fn eq(&self, other: &LoopSource) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::fmt::Debug for LoopSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                LoopSource::Loop => "Loop",
                LoopSource::While => "While",
                LoopSource::ForLoop => "ForLoop",
            })
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for LoopSource {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    LoopSource::Loop => {}
                    LoopSource::While => {}
                    LoopSource::ForLoop => {}
                }
            }
        }
    };StableHash)]
3161pub enum LoopSource {
3162    /// A `loop { .. }` loop.
3163    Loop,
3164    /// A `while _ { .. }` loop.
3165    While,
3166    /// A `for _ in _ { .. }` loop.
3167    ForLoop,
3168}
3169
3170impl LoopSource {
3171    pub fn name(self) -> &'static str {
3172        match self {
3173            LoopSource::Loop => "loop",
3174            LoopSource::While => "while",
3175            LoopSource::ForLoop => "for",
3176        }
3177    }
3178}
3179
3180#[derive(#[automatically_derived]
impl ::core::marker::Copy for LoopIdError { }Copy, #[automatically_derived]
impl ::core::clone::Clone for LoopIdError {
    #[inline]
    fn clone(&self) -> LoopIdError { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for LoopIdError {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                LoopIdError::OutsideLoopScope => "OutsideLoopScope",
                LoopIdError::UnlabeledCfInWhileCondition =>
                    "UnlabeledCfInWhileCondition",
                LoopIdError::UnresolvedLabel => "UnresolvedLabel",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for LoopIdError {
    #[inline]
    fn eq(&self, other: &LoopIdError) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for LoopIdError
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    LoopIdError::OutsideLoopScope => {}
                    LoopIdError::UnlabeledCfInWhileCondition => {}
                    LoopIdError::UnresolvedLabel => {}
                }
            }
        }
    };StableHash)]
3181pub enum LoopIdError {
3182    OutsideLoopScope,
3183    UnlabeledCfInWhileCondition,
3184    UnresolvedLabel,
3185}
3186
3187impl fmt::Display for LoopIdError {
3188    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
3189        f.write_str(match self {
3190            LoopIdError::OutsideLoopScope => "not inside loop scope",
3191            LoopIdError::UnlabeledCfInWhileCondition => {
3192                "unlabeled control flow (break or continue) in while condition"
3193            }
3194            LoopIdError::UnresolvedLabel => "label not found",
3195        })
3196    }
3197}
3198
3199#[derive(#[automatically_derived]
impl ::core::marker::Copy for Destination { }Copy, #[automatically_derived]
impl ::core::clone::Clone for Destination {
    #[inline]
    fn clone(&self) -> Destination {
        let _: ::core::clone::AssertParamIsClone<Option<Label>>;
        let _: ::core::clone::AssertParamIsClone<Result<HirId, LoopIdError>>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for Destination {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "Destination",
            "label", &self.label, "target_id", &&self.target_id)
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for Destination {
    #[inline]
    fn eq(&self, other: &Destination) -> bool {
        self.label == other.label && self.target_id == other.target_id
    }
}PartialEq, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for Destination
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Destination {
                        label: ref __binding_0, target_id: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3200pub struct Destination {
3201    /// This is `Some(_)` iff there is an explicit user-specified 'label
3202    pub label: Option<Label>,
3203
3204    /// These errors are caught and then reported during the diagnostics pass in
3205    /// `librustc_passes/loops.rs`
3206    pub target_id: Result<HirId, LoopIdError>,
3207}
3208
3209/// The yield kind that caused an `ExprKind::Yield`.
3210#[derive(#[automatically_derived]
impl ::core::marker::Copy for YieldSource { }Copy, #[automatically_derived]
impl ::core::clone::Clone for YieldSource {
    #[inline]
    fn clone(&self) -> YieldSource {
        let _: ::core::clone::AssertParamIsClone<Option<HirId>>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for YieldSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            YieldSource::Await { expr: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Await",
                    "expr", &__self_0),
            YieldSource::Yield =>
                ::core::fmt::Formatter::write_str(f, "Yield"),
        }
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for YieldSource
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    YieldSource::Await { expr: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    YieldSource::Yield => {}
                }
            }
        }
    };StableHash)]
3211pub enum YieldSource {
3212    /// An `<expr>.await`.
3213    Await { expr: Option<HirId> },
3214    /// A plain `yield`.
3215    Yield,
3216}
3217
3218impl fmt::Display for YieldSource {
3219    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
3220        f.write_str(match self {
3221            YieldSource::Await { .. } => "`await`",
3222            YieldSource::Yield => "`yield`",
3223        })
3224    }
3225}
3226
3227// N.B., if you change this, you'll probably want to change the corresponding
3228// type structure in middle/ty.rs as well.
3229#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for MutTy<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "MutTy", "ty",
            &self.ty, "mutbl", &&self.mutbl)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for MutTy<'hir> {
    #[inline]
    fn clone(&self) -> MutTy<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Mutability>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for MutTy<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            MutTy<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    MutTy { ty: ref __binding_0, mutbl: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3230pub struct MutTy<'hir> {
3231    pub ty: &'hir Ty<'hir>,
3232    pub mutbl: Mutability,
3233}
3234
3235/// Represents a function's signature in a trait declaration,
3236/// trait implementation, or a free function.
3237#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for FnSig<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "FnSig",
            "header", &self.header, "decl", &self.decl, "span", &&self.span)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for FnSig<'hir> {
    #[inline]
    fn clone(&self) -> FnSig<'hir> {
        let _: ::core::clone::AssertParamIsClone<FnHeader>;
        let _: ::core::clone::AssertParamIsClone<&'hir FnDecl<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for FnSig<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            FnSig<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    FnSig {
                        header: ref __binding_0,
                        decl: ref __binding_1,
                        span: ref __binding_2 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3238pub struct FnSig<'hir> {
3239    pub header: FnHeader,
3240    pub decl: &'hir FnDecl<'hir>,
3241    pub span: Span,
3242}
3243
3244// The bodies for items are stored "out of line", in a separate
3245// hashmap in the `Crate`. Here we just record the hir-id of the item
3246// so it can fetched later.
3247#[derive(#[automatically_derived]
impl ::core::marker::Copy for TraitItemId { }Copy, #[automatically_derived]
impl ::core::clone::Clone for TraitItemId {
    #[inline]
    fn clone(&self) -> TraitItemId {
        let _: ::core::clone::AssertParamIsClone<OwnerId>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for TraitItemId {
    #[inline]
    fn eq(&self, other: &TraitItemId) -> bool {
        self.owner_id == other.owner_id
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for TraitItemId {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<OwnerId>;
    }
}Eq, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for TraitItemId {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    TraitItemId { owner_id: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for TraitItemId {
            fn decode(__decoder: &mut __D) -> Self {
                TraitItemId {
                    owner_id: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable, #[automatically_derived]
impl ::core::fmt::Debug for TraitItemId {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f, "TraitItemId",
            "owner_id", &&self.owner_id)
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for TraitItemId
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    TraitItemId { owner_id: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3248pub struct TraitItemId {
3249    pub owner_id: OwnerId,
3250}
3251
3252impl TraitItemId {
3253    #[inline]
3254    pub fn hir_id(&self) -> HirId {
3255        // Items are always HIR owners.
3256        HirId::make_owner(self.owner_id.def_id)
3257    }
3258}
3259
3260/// Represents an item declaration within a trait declaration,
3261/// possibly including a default implementation. A trait item is
3262/// either required (meaning it doesn't have an implementation, just a
3263/// signature) or provided (meaning it has a default implementation).
3264#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for TraitItem<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["ident", "owner_id", "generics", "kind", "span", "defaultness",
                        "has_delayed_lints"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.ident, &self.owner_id, &self.generics, &self.kind,
                        &self.span, &self.defaultness, &&self.has_delayed_lints];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "TraitItem",
            names, values)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for TraitItem<'hir> {
    #[inline]
    fn clone(&self) -> TraitItem<'hir> {
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<OwnerId>;
        let _: ::core::clone::AssertParamIsClone<&'hir Generics<'hir>>;
        let _: ::core::clone::AssertParamIsClone<TraitItemKind<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<Defaultness>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for TraitItem<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            TraitItem<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    TraitItem {
                        ident: ref __binding_0,
                        owner_id: ref __binding_1,
                        generics: ref __binding_2,
                        kind: ref __binding_3,
                        span: ref __binding_4,
                        defaultness: ref __binding_5,
                        has_delayed_lints: ref __binding_6 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        { __binding_5.stable_hash(__hcx, __hasher); }
                        { __binding_6.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3265pub struct TraitItem<'hir> {
3266    pub ident: Ident,
3267    pub owner_id: OwnerId,
3268    pub generics: &'hir Generics<'hir>,
3269    pub kind: TraitItemKind<'hir>,
3270    pub span: Span,
3271    pub defaultness: Defaultness,
3272    pub has_delayed_lints: bool,
3273}
3274
3275macro_rules! expect_methods_self_kind {
3276    ( $( $name:ident, $ret_ty:ty, $pat:pat, $ret_val:expr; )* ) => {
3277        $(
3278            #[track_caller]
3279            pub fn $name(&self) -> $ret_ty {
3280                let $pat = &self.kind else { expect_failed(stringify!($name), self) };
3281                $ret_val
3282            }
3283        )*
3284    }
3285}
3286
3287macro_rules! expect_methods_self {
3288    ( $( $name:ident, $ret_ty:ty, $pat:pat, $ret_val:expr; )* ) => {
3289        $(
3290            #[track_caller]
3291            pub fn $name(&self) -> $ret_ty {
3292                let $pat = self else { expect_failed(stringify!($name), self) };
3293                $ret_val
3294            }
3295        )*
3296    }
3297}
3298
3299#[track_caller]
3300fn expect_failed<T: fmt::Debug>(ident: &'static str, found: T) -> ! {
3301    {
    ::core::panicking::panic_fmt(format_args!("{0}: found {1:?}", ident,
            found));
}panic!("{ident}: found {found:?}")
3302}
3303
3304impl<'hir> TraitItem<'hir> {
3305    #[inline]
3306    pub fn hir_id(&self) -> HirId {
3307        // Items are always HIR owners.
3308        HirId::make_owner(self.owner_id.def_id)
3309    }
3310
3311    pub fn trait_item_id(&self) -> TraitItemId {
3312        TraitItemId { owner_id: self.owner_id }
3313    }
3314
3315    #[track_caller]
pub fn expect_type(&self) -> (GenericBounds<'hir>, Option<&'hir Ty<'hir>>) {
    let TraitItemKind::Type(bounds, ty) =
        &self.kind else { expect_failed("expect_type", self) };
    (bounds, *ty)
}expect_methods_self_kind! {
3316        expect_const, (&'hir Ty<'hir>, Option<ConstItemRhs<'hir>>),
3317            TraitItemKind::Const(ty, rhs, _), (ty, *rhs);
3318
3319        expect_fn, (&FnSig<'hir>, &TraitFn<'hir>),
3320            TraitItemKind::Fn(ty, trfn), (ty, trfn);
3321
3322        expect_type, (GenericBounds<'hir>, Option<&'hir Ty<'hir>>),
3323            TraitItemKind::Type(bounds, ty), (bounds, *ty);
3324    }
3325}
3326
3327/// Represents a trait method's body (or just argument names).
3328#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for TraitFn<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            TraitFn::Required(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Required", &__self_0),
            TraitFn::Provided(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Provided", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for TraitFn<'hir> {
    #[inline]
    fn clone(&self) -> TraitFn<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir [Option<Ident>]>;
        let _: ::core::clone::AssertParamIsClone<BodyId>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for TraitFn<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            TraitFn<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    TraitFn::Required(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    TraitFn::Provided(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3329pub enum TraitFn<'hir> {
3330    /// No default body in the trait, just a signature.
3331    Required(&'hir [Option<Ident>]),
3332
3333    /// Both signature and body are provided in the trait.
3334    Provided(BodyId),
3335}
3336
3337#[derive(#[automatically_derived]
impl ::core::fmt::Debug for IsTypeConst {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                IsTypeConst::No => "No",
                IsTypeConst::Yes => "Yes",
            })
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for IsTypeConst {
    #[inline]
    fn clone(&self) -> IsTypeConst { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for IsTypeConst { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for IsTypeConst {
    #[inline]
    fn eq(&self, other: &IsTypeConst) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for IsTypeConst {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for IsTypeConst
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self { IsTypeConst::No => {} IsTypeConst::Yes => {} }
            }
        }
    };StableHash)]
3338pub enum IsTypeConst {
3339    No,
3340    Yes,
3341}
3342
3343impl From<bool> for IsTypeConst {
3344    fn from(value: bool) -> Self {
3345        if value { Self::Yes } else { Self::No }
3346    }
3347}
3348
3349impl From<IsTypeConst> for bool {
3350    fn from(value: IsTypeConst) -> Self {
3351        #[allow(non_exhaustive_omitted_patterns)] match value {
    IsTypeConst::Yes => true,
    _ => false,
}matches!(value, IsTypeConst::Yes)
3352    }
3353}
3354
3355/// Represents a trait method or associated constant or type
3356#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for TraitItemKind<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            TraitItemKind::Const(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Const",
                    __self_0, __self_1, &__self_2),
            TraitItemKind::Fn(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Fn",
                    __self_0, &__self_1),
            TraitItemKind::Type(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Type",
                    __self_0, &__self_1),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for TraitItemKind<'hir> {
    #[inline]
    fn clone(&self) -> TraitItemKind<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Option<ConstItemRhs<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<IsTypeConst>;
        let _: ::core::clone::AssertParamIsClone<FnSig<'hir>>;
        let _: ::core::clone::AssertParamIsClone<TraitFn<'hir>>;
        let _: ::core::clone::AssertParamIsClone<GenericBounds<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Ty<'hir>>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for TraitItemKind<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            TraitItemKind<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    TraitItemKind::Const(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    TraitItemKind::Fn(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    TraitItemKind::Type(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3357pub enum TraitItemKind<'hir> {
3358    // FIXME(mgca) eventually want to move the option that is around `ConstItemRhs<'hir>`
3359    // into `ConstItemRhs`, much like `ast::ConstItemRhsKind`, but for now mark whether
3360    // this node is a TypeConst with a flag.
3361    /// An associated constant with an optional value (otherwise `impl`s must contain a value).
3362    Const(&'hir Ty<'hir>, Option<ConstItemRhs<'hir>>, IsTypeConst),
3363    /// An associated function with an optional body.
3364    Fn(FnSig<'hir>, TraitFn<'hir>),
3365    /// An associated type with (possibly empty) bounds and optional concrete
3366    /// type.
3367    Type(GenericBounds<'hir>, Option<&'hir Ty<'hir>>),
3368}
3369
3370// The bodies for items are stored "out of line", in a separate
3371// hashmap in the `Crate`. Here we just record the hir-id of the item
3372// so it can fetched later.
3373#[derive(#[automatically_derived]
impl ::core::marker::Copy for ImplItemId { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ImplItemId {
    #[inline]
    fn clone(&self) -> ImplItemId {
        let _: ::core::clone::AssertParamIsClone<OwnerId>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for ImplItemId {
    #[inline]
    fn eq(&self, other: &ImplItemId) -> bool {
        self.owner_id == other.owner_id
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for ImplItemId {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<OwnerId>;
    }
}Eq, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for ImplItemId {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    ImplItemId { owner_id: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for ImplItemId {
            fn decode(__decoder: &mut __D) -> Self {
                ImplItemId {
                    owner_id: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable, #[automatically_derived]
impl ::core::fmt::Debug for ImplItemId {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f, "ImplItemId",
            "owner_id", &&self.owner_id)
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for ImplItemId {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    ImplItemId { owner_id: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3374pub struct ImplItemId {
3375    pub owner_id: OwnerId,
3376}
3377
3378impl ImplItemId {
3379    #[inline]
3380    pub fn hir_id(&self) -> HirId {
3381        // Items are always HIR owners.
3382        HirId::make_owner(self.owner_id.def_id)
3383    }
3384}
3385
3386/// Represents an associated item within an impl block.
3387///
3388/// Refer to [`Impl`] for an impl block declaration.
3389#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for ImplItem<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["ident", "owner_id", "generics", "kind", "impl_kind", "span",
                        "has_delayed_lints"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.ident, &self.owner_id, &self.generics, &self.kind,
                        &self.impl_kind, &self.span, &&self.has_delayed_lints];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "ImplItem",
            names, values)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for ImplItem<'hir> {
    #[inline]
    fn clone(&self) -> ImplItem<'hir> {
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<OwnerId>;
        let _: ::core::clone::AssertParamIsClone<&'hir Generics<'hir>>;
        let _: ::core::clone::AssertParamIsClone<ImplItemKind<'hir>>;
        let _: ::core::clone::AssertParamIsClone<ImplItemImplKind>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for ImplItem<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            ImplItem<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    ImplItem {
                        ident: ref __binding_0,
                        owner_id: ref __binding_1,
                        generics: ref __binding_2,
                        kind: ref __binding_3,
                        impl_kind: ref __binding_4,
                        span: ref __binding_5,
                        has_delayed_lints: ref __binding_6 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        { __binding_5.stable_hash(__hcx, __hasher); }
                        { __binding_6.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3390pub struct ImplItem<'hir> {
3391    pub ident: Ident,
3392    pub owner_id: OwnerId,
3393    pub generics: &'hir Generics<'hir>,
3394    pub kind: ImplItemKind<'hir>,
3395    pub impl_kind: ImplItemImplKind,
3396    pub span: Span,
3397    pub has_delayed_lints: bool,
3398}
3399
3400#[derive(#[automatically_derived]
impl ::core::fmt::Debug for ImplItemImplKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ImplItemImplKind::Inherent { vis_span: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "Inherent", "vis_span", &__self_0),
            ImplItemImplKind::Trait {
                defaultness: __self_0, trait_item_def_id: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f, "Trait",
                    "defaultness", __self_0, "trait_item_def_id", &__self_1),
        }
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for ImplItemImplKind {
    #[inline]
    fn clone(&self) -> ImplItemImplKind {
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<Defaultness>;
        let _:
                ::core::clone::AssertParamIsClone<Result<DefId,
                ErrorGuaranteed>>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for ImplItemImplKind { }Copy, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            ImplItemImplKind {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    ImplItemImplKind::Inherent { vis_span: ref __binding_0 } =>
                        {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ImplItemImplKind::Trait {
                        defaultness: ref __binding_0,
                        trait_item_def_id: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3401pub enum ImplItemImplKind {
3402    Inherent {
3403        vis_span: Span,
3404    },
3405    Trait {
3406        defaultness: Defaultness,
3407        /// Item in the trait that this item implements
3408        trait_item_def_id: Result<DefId, ErrorGuaranteed>,
3409    },
3410}
3411
3412impl<'hir> ImplItem<'hir> {
3413    #[inline]
3414    pub fn hir_id(&self) -> HirId {
3415        // Items are always HIR owners.
3416        HirId::make_owner(self.owner_id.def_id)
3417    }
3418
3419    pub fn impl_item_id(&self) -> ImplItemId {
3420        ImplItemId { owner_id: self.owner_id }
3421    }
3422
3423    pub fn vis_span(&self) -> Option<Span> {
3424        match self.impl_kind {
3425            ImplItemImplKind::Trait { .. } => None,
3426            ImplItemImplKind::Inherent { vis_span, .. } => Some(vis_span),
3427        }
3428    }
3429
3430    #[track_caller]
pub fn expect_type(&self) -> &'hir Ty<'hir> {
    let ImplItemKind::Type(ty) =
        &self.kind else { expect_failed("expect_type", self) };
    ty
}expect_methods_self_kind! {
3431        expect_const, (&'hir Ty<'hir>, ConstItemRhs<'hir>), ImplItemKind::Const(ty, rhs), (ty, *rhs);
3432        expect_fn,    (&FnSig<'hir>, BodyId),               ImplItemKind::Fn(ty, body),   (ty, *body);
3433        expect_type,  &'hir Ty<'hir>,                       ImplItemKind::Type(ty),       ty;
3434    }
3435}
3436
3437/// Represents various kinds of content within an `impl`.
3438#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for ImplItemKind<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ImplItemKind::Const(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Const",
                    __self_0, &__self_1),
            ImplItemKind::Fn(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Fn",
                    __self_0, &__self_1),
            ImplItemKind::Type(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Type",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for ImplItemKind<'hir> {
    #[inline]
    fn clone(&self) -> ImplItemKind<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<ConstItemRhs<'hir>>;
        let _: ::core::clone::AssertParamIsClone<FnSig<'hir>>;
        let _: ::core::clone::AssertParamIsClone<BodyId>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for ImplItemKind<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            ImplItemKind<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    ImplItemKind::Const(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ImplItemKind::Fn(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ImplItemKind::Type(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3439pub enum ImplItemKind<'hir> {
3440    /// An associated constant of the given type, set to the constant result
3441    /// of the expression.
3442    Const(&'hir Ty<'hir>, ConstItemRhs<'hir>),
3443    /// An associated function implementation with the given signature and body.
3444    Fn(FnSig<'hir>, BodyId),
3445    /// An associated type.
3446    Type(&'hir Ty<'hir>),
3447}
3448
3449/// A constraint on an associated item.
3450///
3451/// ### Examples
3452///
3453/// * the `A = Ty` and `B = Ty` in `Trait<A = Ty, B = Ty>`
3454/// * the `G<Ty> = Ty` in `Trait<G<Ty> = Ty>`
3455/// * the `A: Bound` in `Trait<A: Bound>`
3456/// * the `RetTy` in `Trait(ArgTy, ArgTy) -> RetTy`
3457/// * the `C = { Ct }` in `Trait<C = { Ct }>` (feature `min_generic_const_args`)
3458/// * the `f(..): Bound` in `Trait<f(..): Bound>` (feature `return_type_notation`)
3459#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for AssocItemConstraint<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f,
            "AssocItemConstraint", "hir_id", &self.hir_id, "ident",
            &self.ident, "gen_args", &self.gen_args, "kind", &self.kind,
            "span", &&self.span)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for AssocItemConstraint<'hir> {
    #[inline]
    fn clone(&self) -> AssocItemConstraint<'hir> {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<&'hir GenericArgs<'hir>>;
        let _:
                ::core::clone::AssertParamIsClone<AssocItemConstraintKind<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for AssocItemConstraint<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            AssocItemConstraint<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    AssocItemConstraint {
                        hir_id: ref __binding_0,
                        ident: ref __binding_1,
                        gen_args: ref __binding_2,
                        kind: ref __binding_3,
                        span: ref __binding_4 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3460pub struct AssocItemConstraint<'hir> {
3461    #[stable_hash(ignore)]
3462    pub hir_id: HirId,
3463    pub ident: Ident,
3464    pub gen_args: &'hir GenericArgs<'hir>,
3465    pub kind: AssocItemConstraintKind<'hir>,
3466    pub span: Span,
3467}
3468
3469impl<'hir> AssocItemConstraint<'hir> {
3470    /// Obtain the type on the RHS of an assoc ty equality constraint if applicable.
3471    pub fn ty(self) -> Option<&'hir Ty<'hir>> {
3472        match self.kind {
3473            AssocItemConstraintKind::Equality { term: Term::Ty(ty) } => Some(ty),
3474            _ => None,
3475        }
3476    }
3477
3478    /// Obtain the const on the RHS of an assoc const equality constraint if applicable.
3479    pub fn ct(self) -> Option<&'hir ConstArg<'hir>> {
3480        match self.kind {
3481            AssocItemConstraintKind::Equality { term: Term::Const(ct) } => Some(ct),
3482            _ => None,
3483        }
3484    }
3485}
3486
3487#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Term<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Term::Ty(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Ty",
                    &__self_0),
            Term::Const(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Const",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Term<'hir> {
    #[inline]
    fn clone(&self) -> Term<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir ConstArg<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for Term<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Term<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    Term::Ty(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Term::Const(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3488pub enum Term<'hir> {
3489    Ty(&'hir Ty<'hir>),
3490    Const(&'hir ConstArg<'hir>),
3491}
3492
3493impl<'hir> From<&'hir Ty<'hir>> for Term<'hir> {
3494    fn from(ty: &'hir Ty<'hir>) -> Self {
3495        Term::Ty(ty)
3496    }
3497}
3498
3499impl<'hir> From<&'hir ConstArg<'hir>> for Term<'hir> {
3500    fn from(c: &'hir ConstArg<'hir>) -> Self {
3501        Term::Const(c)
3502    }
3503}
3504
3505/// The kind of [associated item constraint][AssocItemConstraint].
3506#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for AssocItemConstraintKind<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            AssocItemConstraintKind::Equality { term: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "Equality", "term", &__self_0),
            AssocItemConstraintKind::Bound { bounds: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Bound",
                    "bounds", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for AssocItemConstraintKind<'hir> {
    #[inline]
    fn clone(&self) -> AssocItemConstraintKind<'hir> {
        let _: ::core::clone::AssertParamIsClone<Term<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [GenericBound<'hir>]>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for AssocItemConstraintKind<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            AssocItemConstraintKind<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    AssocItemConstraintKind::Equality { term: ref __binding_0 }
                        => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    AssocItemConstraintKind::Bound { bounds: ref __binding_0 }
                        => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3507pub enum AssocItemConstraintKind<'hir> {
3508    /// An equality constraint for an associated item (e.g., `AssocTy = Ty` in `Trait<AssocTy = Ty>`).
3509    ///
3510    /// Also known as an *associated item binding* (we *bind* an associated item to a term).
3511    ///
3512    /// Furthermore, associated type equality constraints can also be referred to as *associated type
3513    /// bindings*. Similarly with associated const equality constraints and *associated const bindings*.
3514    Equality { term: Term<'hir> },
3515    /// A bound on an associated type (e.g., `AssocTy: Bound` in `Trait<AssocTy: Bound>`).
3516    Bound { bounds: &'hir [GenericBound<'hir>] },
3517}
3518
3519impl<'hir> AssocItemConstraintKind<'hir> {
3520    pub fn descr(&self) -> &'static str {
3521        match self {
3522            AssocItemConstraintKind::Equality { .. } => "binding",
3523            AssocItemConstraintKind::Bound { .. } => "constraint",
3524        }
3525    }
3526}
3527
3528/// An uninhabited enum used to make `Infer` variants on [`Ty`] and [`ConstArg`] be
3529/// unreachable. Zero-Variant enums are guaranteed to have the same layout as the never
3530/// type.
3531#[derive(#[automatically_derived]
impl ::core::fmt::Debug for AmbigArg {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match *self {}
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for AmbigArg {
    #[inline]
    fn clone(&self) -> AmbigArg { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for AmbigArg { }Copy, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for AmbigArg {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {}
            }
        }
    };StableHash)]
3532pub enum AmbigArg {}
3533
3534/// Represents a type in the `HIR`.
3535///
3536/// For an explanation of the `Unambig` generic parameter see the dev-guide:
3537/// <https://rustc-dev-guide.rust-lang.org/ambig-unambig-ty-and-consts.html>
3538#[derive(#[automatically_derived]
impl<'hir, Unambig: ::core::fmt::Debug> ::core::fmt::Debug for
    Ty<'hir, Unambig> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "Ty", "hir_id",
            &self.hir_id, "span", &self.span, "kind", &&self.kind)
    }
}Debug, #[automatically_derived]
impl<'hir, Unambig: ::core::clone::Clone> ::core::clone::Clone for
    Ty<'hir, Unambig> {
    #[inline]
    fn clone(&self) -> Ty<'hir, Unambig> {
        Ty {
            hir_id: ::core::clone::Clone::clone(&self.hir_id),
            span: ::core::clone::Clone::clone(&self.span),
            kind: ::core::clone::Clone::clone(&self.kind),
        }
    }
}Clone, #[automatically_derived]
impl<'hir, Unambig: ::core::marker::Copy> ::core::marker::Copy for
    Ty<'hir, Unambig> {
}Copy, const _: () =
    {
        impl<'hir, Unambig> ::rustc_data_structures::stable_hash::StableHash
            for Ty<'hir, Unambig> where
            Unambig: ::rustc_data_structures::stable_hash::StableHash {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Ty {
                        hir_id: ref __binding_0,
                        span: ref __binding_1,
                        kind: ref __binding_2 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3539#[repr(C)]
3540pub struct Ty<'hir, Unambig = ()> {
3541    #[stable_hash(ignore)]
3542    pub hir_id: HirId,
3543    pub span: Span,
3544    pub kind: TyKind<'hir, Unambig>,
3545}
3546
3547impl<'hir> Ty<'hir, AmbigArg> {
3548    /// Converts a `Ty` in an ambiguous position to one in an unambiguous position.
3549    ///
3550    /// Functions accepting an unambiguous types may expect the [`TyKind::Infer`] variant
3551    /// to be used. Care should be taken to separately handle infer types when calling this
3552    /// function as it cannot be handled by downstream code making use of the returned ty.
3553    ///
3554    /// In practice this may mean overriding the [`Visitor::visit_infer`][visit_infer] method on hir visitors, or
3555    /// specifically matching on [`GenericArg::Infer`] when handling generic arguments.
3556    ///
3557    /// [visit_infer]: [rustc_hir::intravisit::Visitor::visit_infer]
3558    pub fn as_unambig_ty(&self) -> &Ty<'hir> {
3559        // SAFETY: `Ty` is `repr(C)` and `TyKind` is marked `repr(u8)` so that the layout is
3560        // the same across different ZST type arguments.
3561        let ptr = self as *const Ty<'hir, AmbigArg> as *const Ty<'hir, ()>;
3562        unsafe { &*ptr }
3563    }
3564}
3565
3566impl<'hir> Ty<'hir> {
3567    /// Converts a `Ty` in an unambiguous position to one in an ambiguous position. This is
3568    /// fallible as the [`TyKind::Infer`] variant is not present in ambiguous positions.
3569    ///
3570    /// Functions accepting ambiguous types will not handle the [`TyKind::Infer`] variant, if
3571    /// infer types are relevant to you then care should be taken to handle them separately.
3572    pub fn try_as_ambig_ty(&self) -> Option<&Ty<'hir, AmbigArg>> {
3573        if let TyKind::Infer(()) = self.kind {
3574            return None;
3575        }
3576
3577        // SAFETY: `Ty` is `repr(C)` and `TyKind` is marked `repr(u8)` so that the layout is
3578        // the same across different ZST type arguments. We also asserted that the `self` is
3579        // not a `TyKind::Infer` so there is no risk of transmuting a `()` to `AmbigArg`.
3580        let ptr = self as *const Ty<'hir> as *const Ty<'hir, AmbigArg>;
3581        Some(unsafe { &*ptr })
3582    }
3583}
3584
3585impl<'hir> Ty<'hir, AmbigArg> {
3586    pub fn peel_refs(&self) -> &Ty<'hir> {
3587        let mut final_ty = self.as_unambig_ty();
3588        while let TyKind::Ref(_, MutTy { ty, .. }) = &final_ty.kind {
3589            final_ty = ty;
3590        }
3591        final_ty
3592    }
3593}
3594
3595impl<'hir> Ty<'hir> {
3596    pub fn peel_refs(&self) -> &Self {
3597        let mut final_ty = self;
3598        while let TyKind::Ref(_, MutTy { ty, .. }) = &final_ty.kind {
3599            final_ty = ty;
3600        }
3601        final_ty
3602    }
3603
3604    /// Returns `true` if `param_def_id` matches the `bounded_ty` of this predicate.
3605    pub fn as_generic_param(&self) -> Option<(DefId, Ident)> {
3606        let TyKind::Path(QPath::Resolved(None, path)) = self.kind else {
3607            return None;
3608        };
3609        let [segment] = &path.segments else {
3610            return None;
3611        };
3612        match path.res {
3613            Res::Def(DefKind::TyParam, def_id) | Res::SelfTyParam { trait_: def_id } => {
3614                Some((def_id, segment.ident))
3615            }
3616            _ => None,
3617        }
3618    }
3619
3620    pub fn find_self_aliases(&self) -> Vec<Span> {
3621        use crate::intravisit::Visitor;
3622        struct MyVisitor(Vec<Span>);
3623        impl<'v> Visitor<'v> for MyVisitor {
3624            fn visit_ty(&mut self, t: &'v Ty<'v, AmbigArg>) {
3625                if #[allow(non_exhaustive_omitted_patterns)] match &t.kind {
    TyKind::Path(QPath::Resolved(_, Path {
        res: crate::def::Res::SelfTyAlias { .. }, .. })) => true,
    _ => false,
}matches!(
3626                    &t.kind,
3627                    TyKind::Path(QPath::Resolved(
3628                        _,
3629                        Path { res: crate::def::Res::SelfTyAlias { .. }, .. },
3630                    ))
3631                ) {
3632                    self.0.push(t.span);
3633                    return;
3634                }
3635                crate::intravisit::walk_ty(self, t);
3636            }
3637        }
3638
3639        let mut my_visitor = MyVisitor(::alloc::vec::Vec::new()vec![]);
3640        my_visitor.visit_ty_unambig(self);
3641        my_visitor.0
3642    }
3643
3644    /// Whether `ty` is a type with `_` placeholders that can be inferred. Used in diagnostics only to
3645    /// use inference to provide suggestions for the appropriate type if possible.
3646    pub fn is_suggestable_infer_ty(&self) -> bool {
3647        fn are_suggestable_generic_args(generic_args: &[GenericArg<'_>]) -> bool {
3648            generic_args.iter().any(|arg| match arg {
3649                GenericArg::Type(ty) => ty.as_unambig_ty().is_suggestable_infer_ty(),
3650                GenericArg::Infer(_) => true,
3651                _ => false,
3652            })
3653        }
3654        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_hir/src/hir.rs:3654",
                        "rustc_hir::hir", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_hir/src/hir.rs"),
                        ::tracing_core::__macro_support::Option::Some(3654u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_hir::hir"),
                        ::tracing_core::field::FieldSet::new(&["self"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&self) as
                                            &dyn Value))])
            });
    } else { ; }
};debug!(?self);
3655        match &self.kind {
3656            TyKind::Infer(()) => true,
3657            TyKind::Slice(ty) => ty.is_suggestable_infer_ty(),
3658            TyKind::Array(ty, length) => {
3659                ty.is_suggestable_infer_ty() || #[allow(non_exhaustive_omitted_patterns)] match length.kind {
    ConstArgKind::Infer(..) => true,
    _ => false,
}matches!(length.kind, ConstArgKind::Infer(..))
3660            }
3661            TyKind::Tup(tys) => tys.iter().any(Self::is_suggestable_infer_ty),
3662            TyKind::Ptr(mut_ty) | TyKind::Ref(_, mut_ty) => mut_ty.ty.is_suggestable_infer_ty(),
3663            TyKind::Path(QPath::TypeRelative(ty, segment)) => {
3664                ty.is_suggestable_infer_ty() || are_suggestable_generic_args(segment.args().args)
3665            }
3666            TyKind::Path(QPath::Resolved(ty_opt, Path { segments, .. })) => {
3667                ty_opt.is_some_and(Self::is_suggestable_infer_ty)
3668                    || segments
3669                        .iter()
3670                        .any(|segment| are_suggestable_generic_args(segment.args().args))
3671            }
3672            _ => false,
3673        }
3674    }
3675}
3676
3677/// Not represented directly in the AST; referred to by name through a `ty_path`.
3678#[derive(#[automatically_derived]
impl ::core::marker::Copy for PrimTy { }Copy, #[automatically_derived]
impl ::core::clone::Clone for PrimTy {
    #[inline]
    fn clone(&self) -> PrimTy {
        let _: ::core::clone::AssertParamIsClone<IntTy>;
        let _: ::core::clone::AssertParamIsClone<UintTy>;
        let _: ::core::clone::AssertParamIsClone<FloatTy>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for PrimTy {
    #[inline]
    fn eq(&self, other: &PrimTy) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (PrimTy::Int(__self_0), PrimTy::Int(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (PrimTy::Uint(__self_0), PrimTy::Uint(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (PrimTy::Float(__self_0), PrimTy::Float(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for PrimTy {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<IntTy>;
        let _: ::core::cmp::AssertParamIsEq<UintTy>;
        let _: ::core::cmp::AssertParamIsEq<FloatTy>;
    }
}Eq, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for PrimTy {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        PrimTy::Int(ref __binding_0) => { 0usize }
                        PrimTy::Uint(ref __binding_0) => { 1usize }
                        PrimTy::Float(ref __binding_0) => { 2usize }
                        PrimTy::Str => { 3usize }
                        PrimTy::Bool => { 4usize }
                        PrimTy::Char => { 5usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    PrimTy::Int(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    PrimTy::Uint(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    PrimTy::Float(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    PrimTy::Str => {}
                    PrimTy::Bool => {}
                    PrimTy::Char => {}
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for PrimTy {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        PrimTy::Int(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => {
                        PrimTy::Uint(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    2usize => {
                        PrimTy::Float(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    3usize => { PrimTy::Str }
                    4usize => { PrimTy::Bool }
                    5usize => { PrimTy::Char }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `PrimTy`, expected 0..6, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable, #[automatically_derived]
impl ::core::hash::Hash for PrimTy {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state);
        match self {
            PrimTy::Int(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            PrimTy::Uint(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            PrimTy::Float(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            _ => {}
        }
    }
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for PrimTy {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            PrimTy::Int(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Int",
                    &__self_0),
            PrimTy::Uint(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Uint",
                    &__self_0),
            PrimTy::Float(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Float",
                    &__self_0),
            PrimTy::Str => ::core::fmt::Formatter::write_str(f, "Str"),
            PrimTy::Bool => ::core::fmt::Formatter::write_str(f, "Bool"),
            PrimTy::Char => ::core::fmt::Formatter::write_str(f, "Char"),
        }
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for PrimTy {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    PrimTy::Int(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    PrimTy::Uint(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    PrimTy::Float(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    PrimTy::Str => {}
                    PrimTy::Bool => {}
                    PrimTy::Char => {}
                }
            }
        }
    };StableHash)]
3679pub enum PrimTy {
3680    Int(IntTy),
3681    Uint(UintTy),
3682    Float(FloatTy),
3683    Str,
3684    Bool,
3685    Char,
3686}
3687
3688impl PrimTy {
3689    /// All of the primitive types
3690    pub const ALL: [Self; 19] = [
3691        // any changes here should also be reflected in `PrimTy::from_name`
3692        Self::Int(IntTy::I8),
3693        Self::Int(IntTy::I16),
3694        Self::Int(IntTy::I32),
3695        Self::Int(IntTy::I64),
3696        Self::Int(IntTy::I128),
3697        Self::Int(IntTy::Isize),
3698        Self::Uint(UintTy::U8),
3699        Self::Uint(UintTy::U16),
3700        Self::Uint(UintTy::U32),
3701        Self::Uint(UintTy::U64),
3702        Self::Uint(UintTy::U128),
3703        Self::Uint(UintTy::Usize),
3704        Self::Float(FloatTy::F16),
3705        Self::Float(FloatTy::F32),
3706        Self::Float(FloatTy::F64),
3707        Self::Float(FloatTy::F128),
3708        Self::Bool,
3709        Self::Char,
3710        Self::Str,
3711    ];
3712
3713    /// Like [`PrimTy::name`], but returns a &str instead of a symbol.
3714    ///
3715    /// Used by clippy.
3716    pub fn name_str(self) -> &'static str {
3717        match self {
3718            PrimTy::Int(i) => i.name_str(),
3719            PrimTy::Uint(u) => u.name_str(),
3720            PrimTy::Float(f) => f.name_str(),
3721            PrimTy::Str => "str",
3722            PrimTy::Bool => "bool",
3723            PrimTy::Char => "char",
3724        }
3725    }
3726
3727    pub fn name(self) -> Symbol {
3728        match self {
3729            PrimTy::Int(i) => i.name(),
3730            PrimTy::Uint(u) => u.name(),
3731            PrimTy::Float(f) => f.name(),
3732            PrimTy::Str => sym::str,
3733            PrimTy::Bool => sym::bool,
3734            PrimTy::Char => sym::char,
3735        }
3736    }
3737
3738    /// Returns the matching `PrimTy` for a `Symbol` such as "str" or "i32".
3739    /// Returns `None` if no matching type is found.
3740    pub fn from_name(name: Symbol) -> Option<Self> {
3741        let ty = match name {
3742            // any changes here should also be reflected in `PrimTy::ALL`
3743            sym::i8 => Self::Int(IntTy::I8),
3744            sym::i16 => Self::Int(IntTy::I16),
3745            sym::i32 => Self::Int(IntTy::I32),
3746            sym::i64 => Self::Int(IntTy::I64),
3747            sym::i128 => Self::Int(IntTy::I128),
3748            sym::isize => Self::Int(IntTy::Isize),
3749            sym::u8 => Self::Uint(UintTy::U8),
3750            sym::u16 => Self::Uint(UintTy::U16),
3751            sym::u32 => Self::Uint(UintTy::U32),
3752            sym::u64 => Self::Uint(UintTy::U64),
3753            sym::u128 => Self::Uint(UintTy::U128),
3754            sym::usize => Self::Uint(UintTy::Usize),
3755            sym::f16 => Self::Float(FloatTy::F16),
3756            sym::f32 => Self::Float(FloatTy::F32),
3757            sym::f64 => Self::Float(FloatTy::F64),
3758            sym::f128 => Self::Float(FloatTy::F128),
3759            sym::bool => Self::Bool,
3760            sym::char => Self::Char,
3761            sym::str => Self::Str,
3762            _ => return None,
3763        };
3764        Some(ty)
3765    }
3766}
3767
3768#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for FnPtrTy<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "FnPtrTy",
            "safety", &self.safety, "abi", &self.abi, "generic_params",
            &self.generic_params, "decl", &self.decl, "param_idents",
            &&self.param_idents)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for FnPtrTy<'hir> {
    #[inline]
    fn clone(&self) -> FnPtrTy<'hir> {
        let _: ::core::clone::AssertParamIsClone<Safety>;
        let _: ::core::clone::AssertParamIsClone<ExternAbi>;
        let _: ::core::clone::AssertParamIsClone<&'hir [GenericParam<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<&'hir FnDecl<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [Option<Ident>]>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for FnPtrTy<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            FnPtrTy<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    FnPtrTy {
                        safety: ref __binding_0,
                        abi: ref __binding_1,
                        generic_params: ref __binding_2,
                        decl: ref __binding_3,
                        param_idents: ref __binding_4 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3769pub struct FnPtrTy<'hir> {
3770    pub safety: Safety,
3771    pub abi: ExternAbi,
3772    pub generic_params: &'hir [GenericParam<'hir>],
3773    pub decl: &'hir FnDecl<'hir>,
3774    // `Option` because bare fn parameter identifiers are optional. We also end up
3775    // with `None` in some error cases, e.g. invalid parameter patterns.
3776    pub param_idents: &'hir [Option<Ident>],
3777}
3778
3779#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for UnsafeBinderTy<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "UnsafeBinderTy", "generic_params", &self.generic_params,
            "inner_ty", &&self.inner_ty)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for UnsafeBinderTy<'hir> {
    #[inline]
    fn clone(&self) -> UnsafeBinderTy<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir [GenericParam<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for UnsafeBinderTy<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            UnsafeBinderTy<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    UnsafeBinderTy {
                        generic_params: ref __binding_0, inner_ty: ref __binding_1 }
                        => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3780pub struct UnsafeBinderTy<'hir> {
3781    pub generic_params: &'hir [GenericParam<'hir>],
3782    pub inner_ty: &'hir Ty<'hir>,
3783}
3784
3785#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for OpaqueTy<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "OpaqueTy",
            "hir_id", &self.hir_id, "def_id", &self.def_id, "bounds",
            &self.bounds, "origin", &self.origin, "span", &&self.span)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for OpaqueTy<'hir> {
    #[inline]
    fn clone(&self) -> OpaqueTy<'hir> {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<LocalDefId>;
        let _: ::core::clone::AssertParamIsClone<GenericBounds<'hir>>;
        let _: ::core::clone::AssertParamIsClone<OpaqueTyOrigin<LocalDefId>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for OpaqueTy<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            OpaqueTy<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    OpaqueTy {
                        hir_id: ref __binding_0,
                        def_id: ref __binding_1,
                        bounds: ref __binding_2,
                        origin: ref __binding_3,
                        span: ref __binding_4 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3786pub struct OpaqueTy<'hir> {
3787    #[stable_hash(ignore)]
3788    pub hir_id: HirId,
3789    pub def_id: LocalDefId,
3790    pub bounds: GenericBounds<'hir>,
3791    pub origin: OpaqueTyOrigin<LocalDefId>,
3792    pub span: Span,
3793}
3794
3795#[derive(#[automatically_derived]
impl<T: ::core::fmt::Debug, U: ::core::fmt::Debug> ::core::fmt::Debug for
    PreciseCapturingArgKind<T, U> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            PreciseCapturingArgKind::Lifetime(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Lifetime", &__self_0),
            PreciseCapturingArgKind::Param(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Param",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<T: ::core::clone::Clone, U: ::core::clone::Clone> ::core::clone::Clone
    for PreciseCapturingArgKind<T, U> {
    #[inline]
    fn clone(&self) -> PreciseCapturingArgKind<T, U> {
        match self {
            PreciseCapturingArgKind::Lifetime(__self_0) =>
                PreciseCapturingArgKind::Lifetime(::core::clone::Clone::clone(__self_0)),
            PreciseCapturingArgKind::Param(__self_0) =>
                PreciseCapturingArgKind::Param(::core::clone::Clone::clone(__self_0)),
        }
    }
}Clone, #[automatically_derived]
impl<T: ::core::marker::Copy, U: ::core::marker::Copy> ::core::marker::Copy
    for PreciseCapturingArgKind<T, U> {
}Copy, const _: () =
    {
        impl<T, U> ::rustc_data_structures::stable_hash::StableHash for
            PreciseCapturingArgKind<T, U> where
            T: ::rustc_data_structures::stable_hash::StableHash,
            U: ::rustc_data_structures::stable_hash::StableHash {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    PreciseCapturingArgKind::Lifetime(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    PreciseCapturingArgKind::Param(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<T, U, __E: ::rustc_span::SpanEncoder>
            ::rustc_serialize::Encodable<__E> for
            PreciseCapturingArgKind<T, U> where
            T: ::rustc_serialize::Encodable<__E>,
            U: ::rustc_serialize::Encodable<__E> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        PreciseCapturingArgKind::Lifetime(ref __binding_0) => {
                            0usize
                        }
                        PreciseCapturingArgKind::Param(ref __binding_0) => {
                            1usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    PreciseCapturingArgKind::Lifetime(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    PreciseCapturingArgKind::Param(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<T, U, __D: ::rustc_span::SpanDecoder>
            ::rustc_serialize::Decodable<__D> for
            PreciseCapturingArgKind<T, U> where
            T: ::rustc_serialize::Decodable<__D>,
            U: ::rustc_serialize::Decodable<__D> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        PreciseCapturingArgKind::Lifetime(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => {
                        PreciseCapturingArgKind::Param(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `PreciseCapturingArgKind`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable)]
3796pub enum PreciseCapturingArgKind<T, U> {
3797    Lifetime(T),
3798    /// Non-lifetime argument (type or const)
3799    Param(U),
3800}
3801
3802pub type PreciseCapturingArg<'hir> =
3803    PreciseCapturingArgKind<&'hir Lifetime, PreciseCapturingNonLifetimeArg>;
3804
3805impl PreciseCapturingArg<'_> {
3806    pub fn hir_id(self) -> HirId {
3807        match self {
3808            PreciseCapturingArg::Lifetime(lt) => lt.hir_id,
3809            PreciseCapturingArg::Param(param) => param.hir_id,
3810        }
3811    }
3812
3813    pub fn name(self) -> Symbol {
3814        match self {
3815            PreciseCapturingArg::Lifetime(lt) => lt.ident.name,
3816            PreciseCapturingArg::Param(param) => param.ident.name,
3817        }
3818    }
3819}
3820
3821/// We need to have a [`Node`] for the [`HirId`] that we attach the type/const param
3822/// resolution to. Lifetimes don't have this problem, and for them, it's actually
3823/// kind of detrimental to use a custom node type versus just using [`Lifetime`],
3824/// since resolve_bound_vars operates on `Lifetime`s.
3825#[derive(#[automatically_derived]
impl ::core::fmt::Debug for PreciseCapturingNonLifetimeArg {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f,
            "PreciseCapturingNonLifetimeArg", "hir_id", &self.hir_id, "ident",
            &self.ident, "res", &&self.res)
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for PreciseCapturingNonLifetimeArg {
    #[inline]
    fn clone(&self) -> PreciseCapturingNonLifetimeArg {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<Res>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for PreciseCapturingNonLifetimeArg { }Copy, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            PreciseCapturingNonLifetimeArg {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    PreciseCapturingNonLifetimeArg {
                        hir_id: ref __binding_0,
                        ident: ref __binding_1,
                        res: ref __binding_2 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3826pub struct PreciseCapturingNonLifetimeArg {
3827    #[stable_hash(ignore)]
3828    pub hir_id: HirId,
3829    pub ident: Ident,
3830    pub res: Res,
3831}
3832
3833#[derive(#[automatically_derived]
impl ::core::marker::Copy for RpitContext { }Copy, #[automatically_derived]
impl ::core::clone::Clone for RpitContext {
    #[inline]
    fn clone(&self) -> RpitContext { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for RpitContext {
    #[inline]
    fn eq(&self, other: &RpitContext) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for RpitContext {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for RpitContext {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                RpitContext::Trait => "Trait",
                RpitContext::TraitImpl => "TraitImpl",
            })
    }
}Debug)]
3834#[derive(const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for RpitContext
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    RpitContext::Trait => {}
                    RpitContext::TraitImpl => {}
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for RpitContext {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        RpitContext::Trait => { 0usize }
                        RpitContext::TraitImpl => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    RpitContext::Trait => {}
                    RpitContext::TraitImpl => {}
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for RpitContext {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { RpitContext::Trait }
                    1usize => { RpitContext::TraitImpl }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `RpitContext`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable)]
3835pub enum RpitContext {
3836    Trait,
3837    TraitImpl,
3838}
3839
3840/// From whence the opaque type came.
3841#[derive(#[automatically_derived]
impl<D: ::core::marker::Copy> ::core::marker::Copy for OpaqueTyOrigin<D> { }Copy, #[automatically_derived]
impl<D: ::core::clone::Clone> ::core::clone::Clone for OpaqueTyOrigin<D> {
    #[inline]
    fn clone(&self) -> OpaqueTyOrigin<D> {
        match self {
            OpaqueTyOrigin::FnReturn {
                parent: __self_0, in_trait_or_impl: __self_1 } =>
                OpaqueTyOrigin::FnReturn {
                    parent: ::core::clone::Clone::clone(__self_0),
                    in_trait_or_impl: ::core::clone::Clone::clone(__self_1),
                },
            OpaqueTyOrigin::AsyncFn {
                parent: __self_0, in_trait_or_impl: __self_1 } =>
                OpaqueTyOrigin::AsyncFn {
                    parent: ::core::clone::Clone::clone(__self_0),
                    in_trait_or_impl: ::core::clone::Clone::clone(__self_1),
                },
            OpaqueTyOrigin::TyAlias { parent: __self_0, in_assoc_ty: __self_1
                } =>
                OpaqueTyOrigin::TyAlias {
                    parent: ::core::clone::Clone::clone(__self_0),
                    in_assoc_ty: ::core::clone::Clone::clone(__self_1),
                },
        }
    }
}Clone, #[automatically_derived]
impl<D: ::core::cmp::PartialEq> ::core::cmp::PartialEq for OpaqueTyOrigin<D> {
    #[inline]
    fn eq(&self, other: &OpaqueTyOrigin<D>) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (OpaqueTyOrigin::FnReturn {
                    parent: __self_0, in_trait_or_impl: __self_1 },
                    OpaqueTyOrigin::FnReturn {
                    parent: __arg1_0, in_trait_or_impl: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (OpaqueTyOrigin::AsyncFn {
                    parent: __self_0, in_trait_or_impl: __self_1 },
                    OpaqueTyOrigin::AsyncFn {
                    parent: __arg1_0, in_trait_or_impl: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (OpaqueTyOrigin::TyAlias {
                    parent: __self_0, in_assoc_ty: __self_1 },
                    OpaqueTyOrigin::TyAlias {
                    parent: __arg1_0, in_assoc_ty: __arg1_1 }) =>
                    __self_1 == __arg1_1 && __self_0 == __arg1_0,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, #[automatically_derived]
impl<D: ::core::cmp::Eq> ::core::cmp::Eq for OpaqueTyOrigin<D> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<D>;
        let _: ::core::cmp::AssertParamIsEq<Option<RpitContext>>;
        let _: ::core::cmp::AssertParamIsEq<Option<RpitContext>>;
        let _: ::core::cmp::AssertParamIsEq<bool>;
    }
}Eq, #[automatically_derived]
impl<D: ::core::fmt::Debug> ::core::fmt::Debug for OpaqueTyOrigin<D> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            OpaqueTyOrigin::FnReturn {
                parent: __self_0, in_trait_or_impl: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "FnReturn", "parent", __self_0, "in_trait_or_impl",
                    &__self_1),
            OpaqueTyOrigin::AsyncFn {
                parent: __self_0, in_trait_or_impl: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "AsyncFn", "parent", __self_0, "in_trait_or_impl",
                    &__self_1),
            OpaqueTyOrigin::TyAlias { parent: __self_0, in_assoc_ty: __self_1
                } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "TyAlias", "parent", __self_0, "in_assoc_ty", &__self_1),
        }
    }
}Debug)]
3842#[derive(const _: () =
    {
        impl<D> ::rustc_data_structures::stable_hash::StableHash for
            OpaqueTyOrigin<D> where
            D: ::rustc_data_structures::stable_hash::StableHash {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    OpaqueTyOrigin::FnReturn {
                        parent: ref __binding_0, in_trait_or_impl: ref __binding_1 }
                        => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    OpaqueTyOrigin::AsyncFn {
                        parent: ref __binding_0, in_trait_or_impl: ref __binding_1 }
                        => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    OpaqueTyOrigin::TyAlias {
                        parent: ref __binding_0, in_assoc_ty: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<D, __E: ::rustc_span::SpanEncoder>
            ::rustc_serialize::Encodable<__E> for OpaqueTyOrigin<D> where
            D: ::rustc_serialize::Encodable<__E> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        OpaqueTyOrigin::FnReturn {
                            parent: ref __binding_0, in_trait_or_impl: ref __binding_1 }
                            => {
                            0usize
                        }
                        OpaqueTyOrigin::AsyncFn {
                            parent: ref __binding_0, in_trait_or_impl: ref __binding_1 }
                            => {
                            1usize
                        }
                        OpaqueTyOrigin::TyAlias {
                            parent: ref __binding_0, in_assoc_ty: ref __binding_1 } => {
                            2usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    OpaqueTyOrigin::FnReturn {
                        parent: ref __binding_0, in_trait_or_impl: ref __binding_1 }
                        => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    OpaqueTyOrigin::AsyncFn {
                        parent: ref __binding_0, in_trait_or_impl: ref __binding_1 }
                        => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    OpaqueTyOrigin::TyAlias {
                        parent: ref __binding_0, in_assoc_ty: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<D, __D: ::rustc_span::SpanDecoder>
            ::rustc_serialize::Decodable<__D> for OpaqueTyOrigin<D> where
            D: ::rustc_serialize::Decodable<__D> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        OpaqueTyOrigin::FnReturn {
                            parent: ::rustc_serialize::Decodable::decode(__decoder),
                            in_trait_or_impl: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    1usize => {
                        OpaqueTyOrigin::AsyncFn {
                            parent: ::rustc_serialize::Decodable::decode(__decoder),
                            in_trait_or_impl: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    2usize => {
                        OpaqueTyOrigin::TyAlias {
                            parent: ::rustc_serialize::Decodable::decode(__decoder),
                            in_assoc_ty: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `OpaqueTyOrigin`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable)]
3843pub enum OpaqueTyOrigin<D> {
3844    /// `-> impl Trait`
3845    FnReturn {
3846        /// The defining function.
3847        parent: D,
3848        // Whether this is an RPITIT (return position impl trait in trait)
3849        in_trait_or_impl: Option<RpitContext>,
3850    },
3851    /// `async fn`
3852    AsyncFn {
3853        /// The defining function.
3854        parent: D,
3855        // Whether this is an AFIT (async fn in trait)
3856        in_trait_or_impl: Option<RpitContext>,
3857    },
3858    /// type aliases: `type Foo = impl Trait;`
3859    TyAlias {
3860        /// The type alias or associated type parent of the TAIT/ATPIT
3861        parent: D,
3862        /// associated types in impl blocks for traits.
3863        in_assoc_ty: bool,
3864    },
3865}
3866
3867#[derive(#[automatically_derived]
impl ::core::fmt::Debug for DelegationInfo {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["call_expr_id", "call_path_res", "parent_args_segment_id",
                        "child_args_segment_id", "self_ty_id", "propagate_self_ty"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.call_expr_id, &self.call_path_res,
                        &self.parent_args_segment_id, &self.child_args_segment_id,
                        &self.self_ty_id, &&self.propagate_self_ty];
        ::core::fmt::Formatter::debug_struct_fields_finish(f,
            "DelegationInfo", names, values)
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for DelegationInfo {
    #[inline]
    fn clone(&self) -> DelegationInfo {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<Option<DefId>>;
        let _: ::core::clone::AssertParamIsClone<Option<HirId>>;
        let _: ::core::clone::AssertParamIsClone<Option<HirId>>;
        let _: ::core::clone::AssertParamIsClone<Option<HirId>>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for DelegationInfo { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for DelegationInfo {
    #[inline]
    fn eq(&self, other: &DelegationInfo) -> bool {
        self.propagate_self_ty == other.propagate_self_ty &&
                            self.call_expr_id == other.call_expr_id &&
                        self.call_path_res == other.call_path_res &&
                    self.parent_args_segment_id == other.parent_args_segment_id
                && self.child_args_segment_id == other.child_args_segment_id
            && self.self_ty_id == other.self_ty_id
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for DelegationInfo {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<HirId>;
        let _: ::core::cmp::AssertParamIsEq<Option<DefId>>;
        let _: ::core::cmp::AssertParamIsEq<Option<HirId>>;
        let _: ::core::cmp::AssertParamIsEq<Option<HirId>>;
        let _: ::core::cmp::AssertParamIsEq<Option<HirId>>;
        let _: ::core::cmp::AssertParamIsEq<bool>;
    }
}Eq, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            DelegationInfo {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    DelegationInfo {
                        call_expr_id: ref __binding_0,
                        call_path_res: ref __binding_1,
                        parent_args_segment_id: ref __binding_2,
                        child_args_segment_id: ref __binding_3,
                        self_ty_id: ref __binding_4,
                        propagate_self_ty: ref __binding_5 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        { __binding_5.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3868pub struct DelegationInfo {
3869    pub call_expr_id: HirId,
3870    pub call_path_res: Option<DefId>,
3871    pub parent_args_segment_id: Option<HirId>,
3872    pub child_args_segment_id: Option<HirId>,
3873    pub self_ty_id: Option<HirId>,
3874    pub propagate_self_ty: bool,
3875}
3876
3877#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for InferDelegationSig<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            InferDelegationSig::Input(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Input",
                    &__self_0),
            InferDelegationSig::Output(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Output",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for InferDelegationSig<'hir> {
    #[inline]
    fn clone(&self) -> InferDelegationSig<'hir> {
        let _: ::core::clone::AssertParamIsClone<usize>;
        let _: ::core::clone::AssertParamIsClone<&'hir DelegationInfo>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for InferDelegationSig<'hir> { }Copy, #[automatically_derived]
impl<'hir> ::core::cmp::PartialEq for InferDelegationSig<'hir> {
    #[inline]
    fn eq(&self, other: &InferDelegationSig<'hir>) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (InferDelegationSig::Input(__self_0),
                    InferDelegationSig::Input(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (InferDelegationSig::Output(__self_0),
                    InferDelegationSig::Output(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, #[automatically_derived]
impl<'hir> ::core::cmp::Eq for InferDelegationSig<'hir> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<usize>;
        let _: ::core::cmp::AssertParamIsEq<&'hir DelegationInfo>;
    }
}Eq, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            InferDelegationSig<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    InferDelegationSig::Input(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    InferDelegationSig::Output(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3878pub enum InferDelegationSig<'hir> {
3879    Input(usize),
3880    // Place delegation info here, as we always specify output type for delegations.
3881    Output(&'hir DelegationInfo),
3882}
3883
3884#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for InferDelegation<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            InferDelegation::DefId(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "DefId",
                    &__self_0),
            InferDelegation::Sig(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Sig",
                    __self_0, &__self_1),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for InferDelegation<'hir> {
    #[inline]
    fn clone(&self) -> InferDelegation<'hir> {
        let _: ::core::clone::AssertParamIsClone<DefId>;
        let _: ::core::clone::AssertParamIsClone<InferDelegationSig<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for InferDelegation<'hir> { }Copy, #[automatically_derived]
impl<'hir> ::core::cmp::PartialEq for InferDelegation<'hir> {
    #[inline]
    fn eq(&self, other: &InferDelegation<'hir>) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (InferDelegation::DefId(__self_0),
                    InferDelegation::DefId(__arg1_0)) => __self_0 == __arg1_0,
                (InferDelegation::Sig(__self_0, __self_1),
                    InferDelegation::Sig(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, #[automatically_derived]
impl<'hir> ::core::cmp::Eq for InferDelegation<'hir> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<DefId>;
        let _: ::core::cmp::AssertParamIsEq<InferDelegationSig<'hir>>;
    }
}Eq, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            InferDelegation<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    InferDelegation::DefId(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    InferDelegation::Sig(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3885pub enum InferDelegation<'hir> {
3886    /// Infer the type of this `DefId` through `tcx.type_of(def_id).instantiate_identity()`,
3887    /// used for const types propagation.
3888    DefId(DefId),
3889    /// Used during signature inheritance, `DefId` corresponds to the signature function.
3890    Sig(DefId, InferDelegationSig<'hir>),
3891}
3892
3893/// The various kinds of types recognized by the compiler.
3894///
3895/// For an explanation of the `Unambig` generic parameter see the dev-guide:
3896/// <https://rustc-dev-guide.rust-lang.org/ambig-unambig-ty-and-consts.html>
3897// SAFETY: `repr(u8)` is required so that `TyKind<()>` and `TyKind<!>` are layout compatible
3898#[repr(u8, C)]
3899#[derive(#[automatically_derived]
impl<'hir, Unambig: ::core::fmt::Debug> ::core::fmt::Debug for
    TyKind<'hir, Unambig> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            TyKind::InferDelegation(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "InferDelegation", &__self_0),
            TyKind::Slice(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Slice",
                    &__self_0),
            TyKind::Array(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Array",
                    __self_0, &__self_1),
            TyKind::Ptr(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Ptr",
                    &__self_0),
            TyKind::Ref(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Ref",
                    __self_0, &__self_1),
            TyKind::FnPtr(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "FnPtr",
                    &__self_0),
            TyKind::UnsafeBinder(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "UnsafeBinder", &__self_0),
            TyKind::Never => ::core::fmt::Formatter::write_str(f, "Never"),
            TyKind::Tup(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Tup",
                    &__self_0),
            TyKind::Path(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Path",
                    &__self_0),
            TyKind::OpaqueDef(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "OpaqueDef", &__self_0),
            TyKind::TraitAscription(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "TraitAscription", &__self_0),
            TyKind::TraitObject(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f,
                    "TraitObject", __self_0, &__self_1),
            TyKind::Err(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Err",
                    &__self_0),
            TyKind::Pat(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Pat",
                    __self_0, &__self_1),
            TyKind::FieldOf(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f,
                    "FieldOf", __self_0, &__self_1),
            TyKind::Infer(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Infer",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir, Unambig: ::core::clone::Clone> ::core::clone::Clone for
    TyKind<'hir, Unambig> {
    #[inline]
    fn clone(&self) -> TyKind<'hir, Unambig> {
        match self {
            TyKind::InferDelegation(__self_0) =>
                TyKind::InferDelegation(::core::clone::Clone::clone(__self_0)),
            TyKind::Slice(__self_0) =>
                TyKind::Slice(::core::clone::Clone::clone(__self_0)),
            TyKind::Array(__self_0, __self_1) =>
                TyKind::Array(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            TyKind::Ptr(__self_0) =>
                TyKind::Ptr(::core::clone::Clone::clone(__self_0)),
            TyKind::Ref(__self_0, __self_1) =>
                TyKind::Ref(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            TyKind::FnPtr(__self_0) =>
                TyKind::FnPtr(::core::clone::Clone::clone(__self_0)),
            TyKind::UnsafeBinder(__self_0) =>
                TyKind::UnsafeBinder(::core::clone::Clone::clone(__self_0)),
            TyKind::Never => TyKind::Never,
            TyKind::Tup(__self_0) =>
                TyKind::Tup(::core::clone::Clone::clone(__self_0)),
            TyKind::Path(__self_0) =>
                TyKind::Path(::core::clone::Clone::clone(__self_0)),
            TyKind::OpaqueDef(__self_0) =>
                TyKind::OpaqueDef(::core::clone::Clone::clone(__self_0)),
            TyKind::TraitAscription(__self_0) =>
                TyKind::TraitAscription(::core::clone::Clone::clone(__self_0)),
            TyKind::TraitObject(__self_0, __self_1) =>
                TyKind::TraitObject(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            TyKind::Err(__self_0) =>
                TyKind::Err(::core::clone::Clone::clone(__self_0)),
            TyKind::Pat(__self_0, __self_1) =>
                TyKind::Pat(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            TyKind::FieldOf(__self_0, __self_1) =>
                TyKind::FieldOf(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            TyKind::Infer(__self_0) =>
                TyKind::Infer(::core::clone::Clone::clone(__self_0)),
        }
    }
}Clone, #[automatically_derived]
impl<'hir, Unambig: ::core::marker::Copy> ::core::marker::Copy for
    TyKind<'hir, Unambig> {
}Copy, const _: () =
    {
        impl<'hir, Unambig> ::rustc_data_structures::stable_hash::StableHash
            for TyKind<'hir, Unambig> where
            Unambig: ::rustc_data_structures::stable_hash::StableHash {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    TyKind::InferDelegation(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::Slice(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::Array(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::Ptr(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::Ref(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::FnPtr(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::UnsafeBinder(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::Never => {}
                    TyKind::Tup(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::Path(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::OpaqueDef(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::TraitAscription(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::TraitObject(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::Err(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::Pat(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::FieldOf(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    TyKind::Infer(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3900pub enum TyKind<'hir, Unambig = ()> {
3901    /// Actual type should be inherited from `DefId` signature
3902    InferDelegation(InferDelegation<'hir>),
3903    /// A variable length slice (i.e., `[T]`).
3904    Slice(&'hir Ty<'hir>),
3905    /// A fixed length array (i.e., `[T; n]`).
3906    Array(&'hir Ty<'hir>, &'hir ConstArg<'hir>),
3907    /// A raw pointer (i.e., `*const T` or `*mut T`).
3908    Ptr(MutTy<'hir>),
3909    /// A reference (i.e., `&'a T` or `&'a mut T`).
3910    Ref(&'hir Lifetime, MutTy<'hir>),
3911    /// A function pointer (e.g., `fn(usize) -> bool`).
3912    FnPtr(&'hir FnPtrTy<'hir>),
3913    /// An unsafe binder type (e.g. `unsafe<'a> Foo<'a>`).
3914    UnsafeBinder(&'hir UnsafeBinderTy<'hir>),
3915    /// The never type (`!`).
3916    Never,
3917    /// A tuple (`(A, B, C, D, ...)`).
3918    Tup(&'hir [Ty<'hir>]),
3919    /// A path to a type definition (`module::module::...::Type`), or an
3920    /// associated type (e.g., `<Vec<T> as Trait>::Type` or `<T>::Target`).
3921    ///
3922    /// Type parameters may be stored in each `PathSegment`.
3923    Path(QPath<'hir>),
3924    /// An opaque type definition itself. This is only used for `impl Trait`.
3925    OpaqueDef(&'hir OpaqueTy<'hir>),
3926    /// A trait ascription type, which is `impl Trait` within a local binding.
3927    TraitAscription(GenericBounds<'hir>),
3928    /// A trait object type `Bound1 + Bound2 + Bound3`
3929    /// where `Bound` is a trait or a lifetime.
3930    ///
3931    /// We use pointer tagging to represent a `&'hir Lifetime` and `TraitObjectSyntax` pair
3932    /// as otherwise this type being `repr(C)` would result in `TyKind` increasing in size.
3933    TraitObject(&'hir [PolyTraitRef<'hir>], TaggedRef<'hir, Lifetime, TraitObjectSyntax>),
3934    /// Placeholder for a type that has failed to be defined.
3935    Err(rustc_span::ErrorGuaranteed),
3936    /// Pattern types (`pattern_type!(u32 is 1..)`)
3937    Pat(&'hir Ty<'hir>, &'hir TyPat<'hir>),
3938    /// Field representing type (`field_of!(Struct, field)`).
3939    ///
3940    /// The optional ident is the variant when an enum is passed `field_of!(Enum, Variant.field)`.
3941    FieldOf(&'hir Ty<'hir>, &'hir TyFieldPath),
3942    /// `TyKind::Infer` means the type should be inferred instead of it having been
3943    /// specified. This can appear anywhere in a type.
3944    ///
3945    /// This variant is not always used to represent inference types, sometimes
3946    /// [`GenericArg::Infer`] is used instead.
3947    Infer(Unambig),
3948}
3949
3950#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for InlineAsmOperand<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            InlineAsmOperand::In { reg: __self_0, expr: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f, "In",
                    "reg", __self_0, "expr", &__self_1),
            InlineAsmOperand::Out {
                reg: __self_0, late: __self_1, expr: __self_2 } =>
                ::core::fmt::Formatter::debug_struct_field3_finish(f, "Out",
                    "reg", __self_0, "late", __self_1, "expr", &__self_2),
            InlineAsmOperand::InOut {
                reg: __self_0, late: __self_1, expr: __self_2 } =>
                ::core::fmt::Formatter::debug_struct_field3_finish(f, "InOut",
                    "reg", __self_0, "late", __self_1, "expr", &__self_2),
            InlineAsmOperand::SplitInOut {
                reg: __self_0,
                late: __self_1,
                in_expr: __self_2,
                out_expr: __self_3 } =>
                ::core::fmt::Formatter::debug_struct_field4_finish(f,
                    "SplitInOut", "reg", __self_0, "late", __self_1, "in_expr",
                    __self_2, "out_expr", &__self_3),
            InlineAsmOperand::Const { anon_const: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Const",
                    "anon_const", &__self_0),
            InlineAsmOperand::SymFn { expr: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "SymFn",
                    "expr", &__self_0),
            InlineAsmOperand::SymStatic { path: __self_0, def_id: __self_1 }
                =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "SymStatic", "path", __self_0, "def_id", &__self_1),
            InlineAsmOperand::Label { block: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Label",
                    "block", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for InlineAsmOperand<'hir> {
    #[inline]
    fn clone(&self) -> InlineAsmOperand<'hir> {
        let _: ::core::clone::AssertParamIsClone<InlineAsmRegOrRegClass>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Expr<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir Expr<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<ConstBlock>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<QPath<'hir>>;
        let _: ::core::clone::AssertParamIsClone<DefId>;
        let _: ::core::clone::AssertParamIsClone<&'hir Block<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for InlineAsmOperand<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            InlineAsmOperand<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    InlineAsmOperand::In {
                        reg: ref __binding_0, expr: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    InlineAsmOperand::Out {
                        reg: ref __binding_0,
                        late: ref __binding_1,
                        expr: ref __binding_2 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    InlineAsmOperand::InOut {
                        reg: ref __binding_0,
                        late: ref __binding_1,
                        expr: ref __binding_2 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    InlineAsmOperand::SplitInOut {
                        reg: ref __binding_0,
                        late: ref __binding_1,
                        in_expr: ref __binding_2,
                        out_expr: ref __binding_3 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                    InlineAsmOperand::Const { anon_const: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    InlineAsmOperand::SymFn { expr: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    InlineAsmOperand::SymStatic {
                        path: ref __binding_0, def_id: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    InlineAsmOperand::Label { block: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3951pub enum InlineAsmOperand<'hir> {
3952    In {
3953        reg: InlineAsmRegOrRegClass,
3954        expr: &'hir Expr<'hir>,
3955    },
3956    Out {
3957        reg: InlineAsmRegOrRegClass,
3958        late: bool,
3959        expr: Option<&'hir Expr<'hir>>,
3960    },
3961    InOut {
3962        reg: InlineAsmRegOrRegClass,
3963        late: bool,
3964        expr: &'hir Expr<'hir>,
3965    },
3966    SplitInOut {
3967        reg: InlineAsmRegOrRegClass,
3968        late: bool,
3969        in_expr: &'hir Expr<'hir>,
3970        out_expr: Option<&'hir Expr<'hir>>,
3971    },
3972    Const {
3973        anon_const: ConstBlock,
3974    },
3975    SymFn {
3976        expr: &'hir Expr<'hir>,
3977    },
3978    SymStatic {
3979        path: QPath<'hir>,
3980        def_id: DefId,
3981    },
3982    Label {
3983        block: &'hir Block<'hir>,
3984    },
3985}
3986
3987impl<'hir> InlineAsmOperand<'hir> {
3988    pub fn reg(&self) -> Option<InlineAsmRegOrRegClass> {
3989        match *self {
3990            Self::In { reg, .. }
3991            | Self::Out { reg, .. }
3992            | Self::InOut { reg, .. }
3993            | Self::SplitInOut { reg, .. } => Some(reg),
3994            Self::Const { .. }
3995            | Self::SymFn { .. }
3996            | Self::SymStatic { .. }
3997            | Self::Label { .. } => None,
3998        }
3999    }
4000
4001    pub fn is_clobber(&self) -> bool {
4002        #[allow(non_exhaustive_omitted_patterns)] match self {
    InlineAsmOperand::Out {
        reg: InlineAsmRegOrRegClass::Reg(_), late: _, expr: None } => true,
    _ => false,
}matches!(
4003            self,
4004            InlineAsmOperand::Out { reg: InlineAsmRegOrRegClass::Reg(_), late: _, expr: None }
4005        )
4006    }
4007}
4008
4009#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for InlineAsm<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["asm_macro", "template", "template_strs", "operands", "options",
                        "line_spans"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.asm_macro, &self.template, &self.template_strs,
                        &self.operands, &self.options, &&self.line_spans];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "InlineAsm",
            names, values)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for InlineAsm<'hir> {
    #[inline]
    fn clone(&self) -> InlineAsm<'hir> {
        let _: ::core::clone::AssertParamIsClone<ast::AsmMacro>;
        let _:
                ::core::clone::AssertParamIsClone<&'hir [InlineAsmTemplatePiece]>;
        let _:
                ::core::clone::AssertParamIsClone<&'hir [(Symbol,
                Option<Symbol>, Span)]>;
        let _:
                ::core::clone::AssertParamIsClone<&'hir [(InlineAsmOperand<'hir>,
                Span)]>;
        let _: ::core::clone::AssertParamIsClone<InlineAsmOptions>;
        let _: ::core::clone::AssertParamIsClone<&'hir [Span]>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for InlineAsm<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            InlineAsm<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    InlineAsm {
                        asm_macro: ref __binding_0,
                        template: ref __binding_1,
                        template_strs: ref __binding_2,
                        operands: ref __binding_3,
                        options: ref __binding_4,
                        line_spans: ref __binding_5 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        { __binding_5.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4010pub struct InlineAsm<'hir> {
4011    pub asm_macro: ast::AsmMacro,
4012    pub template: &'hir [InlineAsmTemplatePiece],
4013    pub template_strs: &'hir [(Symbol, Option<Symbol>, Span)],
4014    pub operands: &'hir [(InlineAsmOperand<'hir>, Span)],
4015    pub options: InlineAsmOptions,
4016    pub line_spans: &'hir [Span],
4017}
4018
4019impl InlineAsm<'_> {
4020    pub fn contains_label(&self) -> bool {
4021        self.operands.iter().any(|x| #[allow(non_exhaustive_omitted_patterns)] match x.0 {
    InlineAsmOperand::Label { .. } => true,
    _ => false,
}matches!(x.0, InlineAsmOperand::Label { .. }))
4022    }
4023}
4024
4025/// Represents a parameter in a function header.
4026#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Param<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field4_finish(f, "Param",
            "hir_id", &self.hir_id, "pat", &self.pat, "ty_span",
            &self.ty_span, "span", &&self.span)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Param<'hir> {
    #[inline]
    fn clone(&self) -> Param<'hir> {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<&'hir Pat<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for Param<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Param<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Param {
                        hir_id: ref __binding_0,
                        pat: ref __binding_1,
                        ty_span: ref __binding_2,
                        span: ref __binding_3 } => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4027pub struct Param<'hir> {
4028    #[stable_hash(ignore)]
4029    pub hir_id: HirId,
4030    pub pat: &'hir Pat<'hir>,
4031    pub ty_span: Span,
4032    pub span: Span,
4033}
4034
4035/// Contains the packed non-type fields of a function declaration.
4036// FIXME(splat): add the splatted argument index as a u16
4037#[derive(#[automatically_derived]
impl ::core::marker::Copy for FnDeclFlags { }Copy, #[automatically_derived]
impl ::core::clone::Clone for FnDeclFlags {
    #[inline]
    fn clone(&self) -> FnDeclFlags {
        let _: ::core::clone::AssertParamIsClone<u8>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for FnDeclFlags {
    #[inline]
    fn eq(&self, other: &FnDeclFlags) -> bool { self.flags == other.flags }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for FnDeclFlags {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<u8>;
    }
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for FnDeclFlags {
    #[inline]
    fn partial_cmp(&self, other: &FnDeclFlags)
        -> ::core::option::Option<::core::cmp::Ordering> {
        ::core::option::Option::Some(::core::cmp::Ord::cmp(self, other))
    }
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for FnDeclFlags {
    #[inline]
    fn cmp(&self, other: &FnDeclFlags) -> ::core::cmp::Ordering {
        ::core::cmp::Ord::cmp(&self.flags, &other.flags)
    }
}Ord, #[automatically_derived]
impl ::core::hash::Hash for FnDeclFlags {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.flags, state)
    }
}Hash)]
4038#[derive(const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for FnDeclFlags {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    FnDeclFlags { flags: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for FnDeclFlags {
            fn decode(__decoder: &mut __D) -> Self {
                FnDeclFlags {
                    flags: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for FnDeclFlags
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    FnDeclFlags { flags: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4039pub struct FnDeclFlags {
4040    /// Holds the c_variadic and lifetime_elision_allowed bitflags, and 3 bits for the `ImplicitSelfKind`.
4041    flags: u8,
4042}
4043
4044impl fmt::Debug for FnDeclFlags {
4045    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
4046        let mut f = f.debug_tuple("FnDeclFlags");
4047        f.field(&::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("ImplicitSelfKind({0:?})",
                self.implicit_self()))
    })format!("ImplicitSelfKind({:?})", self.implicit_self()));
4048
4049        if self.lifetime_elision_allowed() {
4050            f.field(&"LifetimeElisionAllowed");
4051        } else {
4052            f.field(&"NoLifetimeElision");
4053        };
4054
4055        if self.c_variadic() {
4056            f.field(&"CVariadic");
4057        };
4058
4059        f.finish()
4060    }
4061}
4062
4063impl FnDeclFlags {
4064    /// Mask for the implicit self kind.
4065    const IMPLICIT_SELF_MASK: u8 = 0b111;
4066
4067    /// Bitflag for a trailing C-style variadic argument.
4068    const C_VARIADIC_FLAG: u8 = 1 << 3;
4069
4070    /// Bitflag for lifetime elision.
4071    const LIFETIME_ELISION_ALLOWED_FLAG: u8 = 1 << 4;
4072
4073    /// Create a new FnDeclKind with no implicit self, no lifetime elision, and no C-style variadic argument.
4074    /// To modify these flags, use the `set_*` methods, for readability.
4075    // FIXME: use Default instead when that trait is const stable.
4076    pub const fn default() -> Self {
4077        Self { flags: 0 }
4078            .set_implicit_self(ImplicitSelfKind::None)
4079            .set_lifetime_elision_allowed(false)
4080            .set_c_variadic(false)
4081    }
4082
4083    /// Set the implicit self kind.
4084    #[must_use = "this method does not modify the receiver"]
4085    pub const fn set_implicit_self(mut self, implicit_self: ImplicitSelfKind) -> Self {
4086        self.flags &= !Self::IMPLICIT_SELF_MASK;
4087
4088        match implicit_self {
4089            ImplicitSelfKind::None => self.flags |= 0,
4090            ImplicitSelfKind::Imm => self.flags |= 1,
4091            ImplicitSelfKind::Mut => self.flags |= 2,
4092            ImplicitSelfKind::RefImm => self.flags |= 3,
4093            ImplicitSelfKind::RefMut => self.flags |= 4,
4094        }
4095
4096        self
4097    }
4098
4099    /// Set the C-style variadic argument flag.
4100    #[must_use = "this method does not modify the receiver"]
4101    pub const fn set_c_variadic(mut self, c_variadic: bool) -> Self {
4102        if c_variadic {
4103            self.flags |= Self::C_VARIADIC_FLAG;
4104        } else {
4105            self.flags &= !Self::C_VARIADIC_FLAG;
4106        }
4107
4108        self
4109    }
4110
4111    /// Set the lifetime elision allowed flag.
4112    #[must_use = "this method does not modify the receiver"]
4113    pub const fn set_lifetime_elision_allowed(mut self, allowed: bool) -> Self {
4114        if allowed {
4115            self.flags |= Self::LIFETIME_ELISION_ALLOWED_FLAG;
4116        } else {
4117            self.flags &= !Self::LIFETIME_ELISION_ALLOWED_FLAG;
4118        }
4119
4120        self
4121    }
4122
4123    /// Get the implicit self kind.
4124    pub const fn implicit_self(self) -> ImplicitSelfKind {
4125        match self.flags & Self::IMPLICIT_SELF_MASK {
4126            0 => ImplicitSelfKind::None,
4127            1 => ImplicitSelfKind::Imm,
4128            2 => ImplicitSelfKind::Mut,
4129            3 => ImplicitSelfKind::RefImm,
4130            4 => ImplicitSelfKind::RefMut,
4131            _ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
4132        }
4133    }
4134
4135    /// Do the function arguments end with a C-style variadic argument?
4136    pub const fn c_variadic(self) -> bool {
4137        self.flags & Self::C_VARIADIC_FLAG != 0
4138    }
4139
4140    /// Is lifetime elision allowed?
4141    pub const fn lifetime_elision_allowed(self) -> bool {
4142        self.flags & Self::LIFETIME_ELISION_ALLOWED_FLAG != 0
4143    }
4144}
4145
4146/// Represents the header (not the body) of a function declaration.
4147#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for FnDecl<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "FnDecl",
            "inputs", &self.inputs, "output", &self.output, "fn_decl_kind",
            &&self.fn_decl_kind)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for FnDecl<'hir> {
    #[inline]
    fn clone(&self) -> FnDecl<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir [Ty<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<FnRetTy<'hir>>;
        let _: ::core::clone::AssertParamIsClone<FnDeclFlags>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for FnDecl<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            FnDecl<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    FnDecl {
                        inputs: ref __binding_0,
                        output: ref __binding_1,
                        fn_decl_kind: ref __binding_2 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4148pub struct FnDecl<'hir> {
4149    /// The types of the function's parameters.
4150    ///
4151    /// Additional argument data is stored in the function's [body](Body::params).
4152    pub inputs: &'hir [Ty<'hir>],
4153    pub output: FnRetTy<'hir>,
4154    /// The packed function declaration attributes.
4155    pub fn_decl_kind: FnDeclFlags,
4156}
4157
4158impl<'hir> FnDecl<'hir> {
4159    pub fn opt_delegation_sig_id(&self) -> Option<DefId> {
4160        if let FnRetTy::Return(ty) = self.output
4161            && let TyKind::InferDelegation(InferDelegation::Sig(sig_id, _)) = ty.kind
4162        {
4163            return Some(sig_id);
4164        }
4165        None
4166    }
4167
4168    pub fn opt_delegation_info(&self) -> Option<&'hir DelegationInfo> {
4169        if let FnRetTy::Return(ty) = self.output
4170            && let TyKind::InferDelegation(InferDelegation::Sig(_, kind)) = ty.kind
4171            && let InferDelegationSig::Output(generics) = kind
4172        {
4173            return Some(generics);
4174        }
4175
4176        None
4177    }
4178
4179    pub fn implicit_self(&self) -> ImplicitSelfKind {
4180        self.fn_decl_kind.implicit_self()
4181    }
4182
4183    pub fn c_variadic(&self) -> bool {
4184        self.fn_decl_kind.c_variadic()
4185    }
4186
4187    pub fn lifetime_elision_allowed(&self) -> bool {
4188        self.fn_decl_kind.lifetime_elision_allowed()
4189    }
4190
4191    pub fn dummy(span: Span) -> Self {
4192        Self {
4193            inputs: &[],
4194            output: FnRetTy::DefaultReturn(span),
4195            fn_decl_kind: FnDeclFlags::default().set_lifetime_elision_allowed(true),
4196        }
4197    }
4198}
4199
4200/// Represents what type of implicit self a function has, if any.
4201#[derive(#[automatically_derived]
impl ::core::marker::Copy for ImplicitSelfKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ImplicitSelfKind {
    #[inline]
    fn clone(&self) -> ImplicitSelfKind { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for ImplicitSelfKind {
    #[inline]
    fn eq(&self, other: &ImplicitSelfKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for ImplicitSelfKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for ImplicitSelfKind {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        ImplicitSelfKind::Imm => { 0usize }
                        ImplicitSelfKind::Mut => { 1usize }
                        ImplicitSelfKind::RefImm => { 2usize }
                        ImplicitSelfKind::RefMut => { 3usize }
                        ImplicitSelfKind::None => { 4usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    ImplicitSelfKind::Imm => {}
                    ImplicitSelfKind::Mut => {}
                    ImplicitSelfKind::RefImm => {}
                    ImplicitSelfKind::RefMut => {}
                    ImplicitSelfKind::None => {}
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for ImplicitSelfKind {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { ImplicitSelfKind::Imm }
                    1usize => { ImplicitSelfKind::Mut }
                    2usize => { ImplicitSelfKind::RefImm }
                    3usize => { ImplicitSelfKind::RefMut }
                    4usize => { ImplicitSelfKind::None }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `ImplicitSelfKind`, expected 0..5, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable, #[automatically_derived]
impl ::core::fmt::Debug for ImplicitSelfKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                ImplicitSelfKind::Imm => "Imm",
                ImplicitSelfKind::Mut => "Mut",
                ImplicitSelfKind::RefImm => "RefImm",
                ImplicitSelfKind::RefMut => "RefMut",
                ImplicitSelfKind::None => "None",
            })
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            ImplicitSelfKind {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    ImplicitSelfKind::Imm => {}
                    ImplicitSelfKind::Mut => {}
                    ImplicitSelfKind::RefImm => {}
                    ImplicitSelfKind::RefMut => {}
                    ImplicitSelfKind::None => {}
                }
            }
        }
    };StableHash)]
4202pub enum ImplicitSelfKind {
4203    /// Represents a `fn x(self);`.
4204    Imm,
4205    /// Represents a `fn x(mut self);`.
4206    Mut,
4207    /// Represents a `fn x(&self);`.
4208    RefImm,
4209    /// Represents a `fn x(&mut self);`.
4210    RefMut,
4211    /// Represents when a function does not have a self argument or
4212    /// when a function has a `self: X` argument.
4213    None,
4214}
4215
4216impl ImplicitSelfKind {
4217    /// Does this represent an implicit self?
4218    pub fn has_implicit_self(&self) -> bool {
4219        !#[allow(non_exhaustive_omitted_patterns)] match *self {
    ImplicitSelfKind::None => true,
    _ => false,
}matches!(*self, ImplicitSelfKind::None)
4220    }
4221}
4222
4223#[derive(#[automatically_derived]
impl ::core::marker::Copy for IsAsync { }Copy, #[automatically_derived]
impl ::core::clone::Clone for IsAsync {
    #[inline]
    fn clone(&self) -> IsAsync {
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for IsAsync {
    #[inline]
    fn eq(&self, other: &IsAsync) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (IsAsync::Async(__self_0), IsAsync::Async(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for IsAsync {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<Span>;
    }
}Eq, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for IsAsync {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        IsAsync::Async(ref __binding_0) => { 0usize }
                        IsAsync::NotAsync => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    IsAsync::Async(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    IsAsync::NotAsync => {}
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for IsAsync {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        IsAsync::Async(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => { IsAsync::NotAsync }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `IsAsync`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable, #[automatically_derived]
impl ::core::fmt::Debug for IsAsync {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            IsAsync::Async(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Async",
                    &__self_0),
            IsAsync::NotAsync =>
                ::core::fmt::Formatter::write_str(f, "NotAsync"),
        }
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for IsAsync {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    IsAsync::Async(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    IsAsync::NotAsync => {}
                }
            }
        }
    };StableHash)]
4224pub enum IsAsync {
4225    Async(Span),
4226    NotAsync,
4227}
4228
4229impl IsAsync {
4230    pub fn is_async(self) -> bool {
4231        #[allow(non_exhaustive_omitted_patterns)] match self {
    IsAsync::Async(_) => true,
    _ => false,
}matches!(self, IsAsync::Async(_))
4232    }
4233}
4234
4235#[derive(#[automatically_derived]
impl ::core::marker::Copy for Defaultness { }Copy, #[automatically_derived]
impl ::core::clone::Clone for Defaultness {
    #[inline]
    fn clone(&self) -> Defaultness {
        let _: ::core::clone::AssertParamIsClone<bool>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for Defaultness {
    #[inline]
    fn eq(&self, other: &Defaultness) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (Defaultness::Default { has_value: __self_0 },
                    Defaultness::Default { has_value: __arg1_0 }) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Defaultness {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<bool>;
    }
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for Defaultness {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Defaultness::Default { has_value: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "Default", "has_value", &__self_0),
            Defaultness::Final =>
                ::core::fmt::Formatter::write_str(f, "Final"),
        }
    }
}Debug, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for Defaultness {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        Defaultness::Default { has_value: ref __binding_0 } => {
                            0usize
                        }
                        Defaultness::Final => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    Defaultness::Default { has_value: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    Defaultness::Final => {}
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for Defaultness {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        Defaultness::Default {
                            has_value: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    1usize => { Defaultness::Final }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `Defaultness`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for Defaultness
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    Defaultness::Default { has_value: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Defaultness::Final => {}
                }
            }
        }
    };StableHash)]
4236#[derive(#[automatically_derived]
impl ::core::default::Default for Defaultness {
    #[inline]
    fn default() -> Defaultness { Self::Final }
}Default)]
4237pub enum Defaultness {
4238    Default {
4239        has_value: bool,
4240    },
4241    #[default]
4242    Final,
4243}
4244
4245impl Defaultness {
4246    pub fn has_value(&self) -> bool {
4247        match *self {
4248            Defaultness::Default { has_value } => has_value,
4249            Defaultness::Final => true,
4250        }
4251    }
4252
4253    pub fn is_final(&self) -> bool {
4254        *self == Defaultness::Final
4255    }
4256
4257    pub fn is_default(&self) -> bool {
4258        #[allow(non_exhaustive_omitted_patterns)] match *self {
    Defaultness::Default { .. } => true,
    _ => false,
}matches!(*self, Defaultness::Default { .. })
4259    }
4260}
4261
4262#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for FnRetTy<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            FnRetTy::DefaultReturn(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "DefaultReturn", &__self_0),
            FnRetTy::Return(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Return",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for FnRetTy<'hir> {
    #[inline]
    fn clone(&self) -> FnRetTy<'hir> {
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for FnRetTy<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            FnRetTy<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    FnRetTy::DefaultReturn(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    FnRetTy::Return(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4263pub enum FnRetTy<'hir> {
4264    /// Return type is not specified.
4265    ///
4266    /// Functions default to `()` and
4267    /// closures default to inference. Span points to where return
4268    /// type would be inserted.
4269    DefaultReturn(Span),
4270    /// Everything else.
4271    Return(&'hir Ty<'hir>),
4272}
4273
4274impl<'hir> FnRetTy<'hir> {
4275    #[inline]
4276    pub fn span(&self) -> Span {
4277        match *self {
4278            Self::DefaultReturn(span) => span,
4279            Self::Return(ref ty) => ty.span,
4280        }
4281    }
4282
4283    pub fn is_suggestable_infer_ty(&self) -> Option<&'hir Ty<'hir>> {
4284        if let Self::Return(ty) = self
4285            && ty.is_suggestable_infer_ty()
4286        {
4287            return Some(*ty);
4288        }
4289        None
4290    }
4291}
4292
4293/// Represents `for<...>` binder before a closure
4294#[derive(#[automatically_derived]
impl ::core::marker::Copy for ClosureBinder { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ClosureBinder {
    #[inline]
    fn clone(&self) -> ClosureBinder {
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for ClosureBinder {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ClosureBinder::Default =>
                ::core::fmt::Formatter::write_str(f, "Default"),
            ClosureBinder::For { span: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "For",
                    "span", &__self_0),
        }
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            ClosureBinder {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    ClosureBinder::Default => {}
                    ClosureBinder::For { span: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4295pub enum ClosureBinder {
4296    /// Binder is not specified.
4297    Default,
4298    /// Binder is specified.
4299    ///
4300    /// Span points to the whole `for<...>`.
4301    For { span: Span },
4302}
4303
4304#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Mod<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "Mod", "spans",
            &self.spans, "item_ids", &&self.item_ids)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Mod<'hir> {
    #[inline]
    fn clone(&self) -> Mod<'hir> {
        let _: ::core::clone::AssertParamIsClone<ModSpans>;
        let _: ::core::clone::AssertParamIsClone<&'hir [ItemId]>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for Mod<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Mod<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Mod { spans: ref __binding_0, item_ids: ref __binding_1 } =>
                        {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4305pub struct Mod<'hir> {
4306    pub spans: ModSpans,
4307    pub item_ids: &'hir [ItemId],
4308}
4309
4310#[derive(#[automatically_derived]
impl ::core::marker::Copy for ModSpans { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ModSpans {
    #[inline]
    fn clone(&self) -> ModSpans {
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for ModSpans {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "ModSpans",
            "inner_span", &self.inner_span, "inject_use_span",
            &&self.inject_use_span)
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for ModSpans {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    ModSpans {
                        inner_span: ref __binding_0,
                        inject_use_span: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4311pub struct ModSpans {
4312    /// A span from the first token past `{` to the last token until `}`.
4313    /// For `mod foo;`, the inner span ranges from the first token
4314    /// to the last token in the external file.
4315    pub inner_span: Span,
4316    pub inject_use_span: Span,
4317}
4318
4319#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for EnumDef<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f, "EnumDef",
            "variants", &&self.variants)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for EnumDef<'hir> {
    #[inline]
    fn clone(&self) -> EnumDef<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir [Variant<'hir>]>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for EnumDef<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            EnumDef<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    EnumDef { variants: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4320pub struct EnumDef<'hir> {
4321    pub variants: &'hir [Variant<'hir>],
4322}
4323
4324#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Variant<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["ident", "hir_id", "def_id", "data", "disr_expr", "span"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.ident, &self.hir_id, &self.def_id, &self.data,
                        &self.disr_expr, &&self.span];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "Variant",
            names, values)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Variant<'hir> {
    #[inline]
    fn clone(&self) -> Variant<'hir> {
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<LocalDefId>;
        let _: ::core::clone::AssertParamIsClone<VariantData<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir AnonConst>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for Variant<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Variant<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Variant {
                        ident: ref __binding_0,
                        hir_id: ref __binding_1,
                        def_id: ref __binding_2,
                        data: ref __binding_3,
                        disr_expr: ref __binding_4,
                        span: ref __binding_5 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        {}
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        { __binding_5.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4325pub struct Variant<'hir> {
4326    /// Name of the variant.
4327    pub ident: Ident,
4328    /// Id of the variant (not the constructor, see `VariantData::ctor_hir_id()`).
4329    #[stable_hash(ignore)]
4330    pub hir_id: HirId,
4331    pub def_id: LocalDefId,
4332    /// Fields and constructor id of the variant.
4333    pub data: VariantData<'hir>,
4334    /// Explicit discriminant (e.g., `Foo = 1`).
4335    pub disr_expr: Option<&'hir AnonConst>,
4336    /// Span
4337    pub span: Span,
4338}
4339
4340#[derive(#[automatically_derived]
impl ::core::marker::Copy for UseKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for UseKind {
    #[inline]
    fn clone(&self) -> UseKind {
        let _: ::core::clone::AssertParamIsClone<Ident>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for UseKind {
    #[inline]
    fn eq(&self, other: &UseKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (UseKind::Single(__self_0), UseKind::Single(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::fmt::Debug for UseKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            UseKind::Single(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Single",
                    &__self_0),
            UseKind::Glob => ::core::fmt::Formatter::write_str(f, "Glob"),
            UseKind::ListStem =>
                ::core::fmt::Formatter::write_str(f, "ListStem"),
        }
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for UseKind {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    UseKind::Single(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    UseKind::Glob => {}
                    UseKind::ListStem => {}
                }
            }
        }
    };StableHash)]
4341pub enum UseKind {
4342    /// One import, e.g., `use foo::bar` or `use foo::bar as baz`.
4343    /// Also produced for each element of a list `use`, e.g.
4344    /// `use foo::{a, b}` lowers to `use foo::a; use foo::b;`.
4345    ///
4346    /// The identifier is the name defined by the import. E.g. for `use
4347    /// foo::bar` it is `bar`, for `use foo::bar as baz` it is `baz`.
4348    Single(Ident),
4349
4350    /// Glob import, e.g., `use foo::*`.
4351    Glob,
4352
4353    /// Degenerate list import, e.g., `use foo::{a, b}` produces
4354    /// an additional `use foo::{}` for performing checks such as
4355    /// unstable feature gating. May be removed in the future.
4356    ListStem,
4357}
4358
4359/// References to traits in impls.
4360///
4361/// `resolve` maps each `TraitRef`'s `ref_id` to its defining trait; that's all
4362/// that the `ref_id` is for. Note that `ref_id`'s value is not the `HirId` of the
4363/// trait being referred to but just a unique `HirId` that serves as a key
4364/// within the resolution map.
4365#[derive(#[automatically_derived]
impl<'hir> ::core::clone::Clone for TraitRef<'hir> {
    #[inline]
    fn clone(&self) -> TraitRef<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir Path<'hir>>;
        let _: ::core::clone::AssertParamIsClone<HirId>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::fmt::Debug for TraitRef<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "TraitRef",
            "path", &self.path, "hir_ref_id", &&self.hir_ref_id)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::marker::Copy for TraitRef<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            TraitRef<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    TraitRef {
                        path: ref __binding_0, hir_ref_id: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        {}
                    }
                }
            }
        }
    };StableHash)]
4366pub struct TraitRef<'hir> {
4367    pub path: &'hir Path<'hir>,
4368    // Don't hash the `ref_id`. It is tracked via the thing it is used to access.
4369    #[stable_hash(ignore)]
4370    pub hir_ref_id: HirId,
4371}
4372
4373impl TraitRef<'_> {
4374    /// Gets the `DefId` of the referenced trait. It _must_ actually be a trait or trait alias.
4375    pub fn trait_def_id(&self) -> Option<DefId> {
4376        match self.path.res {
4377            Res::Def(DefKind::Trait | DefKind::TraitAlias, did) => Some(did),
4378            Res::Err => None,
4379            res => {
    ::core::panicking::panic_fmt(format_args!("{0:?} did not resolve to a trait or trait alias",
            res));
}panic!("{res:?} did not resolve to a trait or trait alias"),
4380        }
4381    }
4382}
4383
4384#[derive(#[automatically_derived]
impl<'hir> ::core::clone::Clone for PolyTraitRef<'hir> {
    #[inline]
    fn clone(&self) -> PolyTraitRef<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir [GenericParam<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<TraitBoundModifiers>;
        let _: ::core::clone::AssertParamIsClone<TraitRef<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::fmt::Debug for PolyTraitRef<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field4_finish(f, "PolyTraitRef",
            "bound_generic_params", &self.bound_generic_params, "modifiers",
            &self.modifiers, "trait_ref", &self.trait_ref, "span",
            &&self.span)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::marker::Copy for PolyTraitRef<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            PolyTraitRef<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    PolyTraitRef {
                        bound_generic_params: ref __binding_0,
                        modifiers: ref __binding_1,
                        trait_ref: ref __binding_2,
                        span: ref __binding_3 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4385pub struct PolyTraitRef<'hir> {
4386    /// The `'a` in `for<'a> Foo<&'a T>`.
4387    pub bound_generic_params: &'hir [GenericParam<'hir>],
4388
4389    /// The constness and polarity of the trait ref.
4390    ///
4391    /// The `async` modifier is lowered directly into a different trait for now.
4392    pub modifiers: TraitBoundModifiers,
4393
4394    /// The `Foo<&'a T>` in `for<'a> Foo<&'a T>`.
4395    pub trait_ref: TraitRef<'hir>,
4396
4397    pub span: Span,
4398}
4399
4400#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for FieldDef<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["span", "vis_span", "ident", "hir_id", "def_id", "ty", "safety",
                        "default"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.span, &self.vis_span, &self.ident, &self.hir_id,
                        &self.def_id, &self.ty, &self.safety, &&self.default];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "FieldDef",
            names, values)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for FieldDef<'hir> {
    #[inline]
    fn clone(&self) -> FieldDef<'hir> {
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<LocalDefId>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Safety>;
        let _: ::core::clone::AssertParamIsClone<Option<&'hir AnonConst>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for FieldDef<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            FieldDef<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    FieldDef {
                        span: ref __binding_0,
                        vis_span: ref __binding_1,
                        ident: ref __binding_2,
                        hir_id: ref __binding_3,
                        def_id: ref __binding_4,
                        ty: ref __binding_5,
                        safety: ref __binding_6,
                        default: ref __binding_7 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        {}
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        { __binding_5.stable_hash(__hcx, __hasher); }
                        { __binding_6.stable_hash(__hcx, __hasher); }
                        { __binding_7.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4401pub struct FieldDef<'hir> {
4402    pub span: Span,
4403    pub vis_span: Span,
4404    pub ident: Ident,
4405    #[stable_hash(ignore)]
4406    pub hir_id: HirId,
4407    pub def_id: LocalDefId,
4408    pub ty: &'hir Ty<'hir>,
4409    pub safety: Safety,
4410    pub default: Option<&'hir AnonConst>,
4411}
4412
4413impl FieldDef<'_> {
4414    // Still necessary in couple of places
4415    pub fn is_positional(&self) -> bool {
4416        self.ident.as_str().as_bytes()[0].is_ascii_digit()
4417    }
4418}
4419
4420/// Fields and constructor IDs of enum variants and structs.
4421#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for VariantData<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            VariantData::Struct { fields: __self_0, recovered: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "Struct", "fields", __self_0, "recovered", &__self_1),
            VariantData::Tuple(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Tuple",
                    __self_0, __self_1, &__self_2),
            VariantData::Unit(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Unit",
                    __self_0, &__self_1),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for VariantData<'hir> {
    #[inline]
    fn clone(&self) -> VariantData<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir [FieldDef<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<ast::Recovered>;
        let _: ::core::clone::AssertParamIsClone<&'hir [FieldDef<'hir>]>;
        let _: ::core::clone::AssertParamIsClone<HirId>;
        let _: ::core::clone::AssertParamIsClone<LocalDefId>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for VariantData<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            VariantData<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    VariantData::Struct {
                        fields: ref __binding_0, recovered: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    VariantData::Tuple(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        {}
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    VariantData::Unit(ref __binding_0, ref __binding_1) => {
                        {}
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4422pub enum VariantData<'hir> {
4423    /// A struct variant.
4424    ///
4425    /// E.g., `Bar { .. }` as in `enum Foo { Bar { .. } }`.
4426    Struct { fields: &'hir [FieldDef<'hir>], recovered: ast::Recovered },
4427    /// A tuple variant.
4428    ///
4429    /// E.g., `Bar(..)` as in `enum Foo { Bar(..) }`.
4430    Tuple(&'hir [FieldDef<'hir>], #[stable_hash(ignore)] HirId, LocalDefId),
4431    /// A unit variant.
4432    ///
4433    /// E.g., `Bar = ..` as in `enum Foo { Bar = .. }`.
4434    Unit(#[stable_hash(ignore)] HirId, LocalDefId),
4435}
4436
4437impl<'hir> VariantData<'hir> {
4438    /// Return the fields of this variant.
4439    pub fn fields(&self) -> &'hir [FieldDef<'hir>] {
4440        match *self {
4441            VariantData::Struct { fields, .. } | VariantData::Tuple(fields, ..) => fields,
4442            _ => &[],
4443        }
4444    }
4445
4446    pub fn ctor(&self) -> Option<(CtorKind, HirId, LocalDefId)> {
4447        match *self {
4448            VariantData::Tuple(_, hir_id, def_id) => Some((CtorKind::Fn, hir_id, def_id)),
4449            VariantData::Unit(hir_id, def_id) => Some((CtorKind::Const, hir_id, def_id)),
4450            VariantData::Struct { .. } => None,
4451        }
4452    }
4453
4454    #[inline]
4455    pub fn ctor_kind(&self) -> Option<CtorKind> {
4456        self.ctor().map(|(kind, ..)| kind)
4457    }
4458
4459    /// Return the `HirId` of this variant's constructor, if it has one.
4460    #[inline]
4461    pub fn ctor_hir_id(&self) -> Option<HirId> {
4462        self.ctor().map(|(_, hir_id, _)| hir_id)
4463    }
4464
4465    /// Return the `LocalDefId` of this variant's constructor, if it has one.
4466    #[inline]
4467    pub fn ctor_def_id(&self) -> Option<LocalDefId> {
4468        self.ctor().map(|(.., def_id)| def_id)
4469    }
4470}
4471
4472// The bodies for items are stored "out of line", in a separate
4473// hashmap in the `Crate`. Here we just record the hir-id of the item
4474// so it can fetched later.
4475#[derive(#[automatically_derived]
impl ::core::marker::Copy for ItemId { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ItemId {
    #[inline]
    fn clone(&self) -> ItemId {
        let _: ::core::clone::AssertParamIsClone<OwnerId>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for ItemId {
    #[inline]
    fn eq(&self, other: &ItemId) -> bool { self.owner_id == other.owner_id }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for ItemId {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<OwnerId>;
    }
}Eq, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for ItemId {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    ItemId { owner_id: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for ItemId {
            fn decode(__decoder: &mut __D) -> Self {
                ItemId {
                    owner_id: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable, #[automatically_derived]
impl ::core::fmt::Debug for ItemId {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f, "ItemId",
            "owner_id", &&self.owner_id)
    }
}Debug, #[automatically_derived]
impl ::core::hash::Hash for ItemId {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.owner_id, state)
    }
}Hash, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for ItemId {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    ItemId { owner_id: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4476pub struct ItemId {
4477    pub owner_id: OwnerId,
4478}
4479
4480impl ItemId {
4481    #[inline]
4482    pub fn hir_id(&self) -> HirId {
4483        // Items are always HIR owners.
4484        HirId::make_owner(self.owner_id.def_id)
4485    }
4486}
4487
4488/// An item
4489///
4490/// For more details, see the [rust lang reference].
4491/// Note that the reference does not document nightly-only features.
4492/// There may be also slight differences in the names and representation of AST nodes between
4493/// the compiler and the reference.
4494///
4495/// [rust lang reference]: https://doc.rust-lang.org/reference/items.html
4496#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Item<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["owner_id", "kind", "span", "vis_span", "has_delayed_lints",
                        "eii"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.owner_id, &self.kind, &self.span, &self.vis_span,
                        &self.has_delayed_lints, &&self.eii];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "Item", names,
            values)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Item<'hir> {
    #[inline]
    fn clone(&self) -> Item<'hir> {
        let _: ::core::clone::AssertParamIsClone<OwnerId>;
        let _: ::core::clone::AssertParamIsClone<ItemKind<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for Item<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Item<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Item {
                        owner_id: ref __binding_0,
                        kind: ref __binding_1,
                        span: ref __binding_2,
                        vis_span: ref __binding_3,
                        has_delayed_lints: ref __binding_4,
                        eii: ref __binding_5 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        { __binding_5.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4497pub struct Item<'hir> {
4498    pub owner_id: OwnerId,
4499    pub kind: ItemKind<'hir>,
4500    pub span: Span,
4501    pub vis_span: Span,
4502    pub has_delayed_lints: bool,
4503    /// hint to speed up collection: true if the item is a static or function and has
4504    /// either an `EiiImpls` or `EiiExternTarget` attribute
4505    pub eii: bool,
4506}
4507
4508impl<'hir> Item<'hir> {
4509    #[inline]
4510    pub fn hir_id(&self) -> HirId {
4511        // Items are always HIR owners.
4512        HirId::make_owner(self.owner_id.def_id)
4513    }
4514
4515    pub fn item_id(&self) -> ItemId {
4516        ItemId { owner_id: self.owner_id }
4517    }
4518
4519    /// Check if this is an [`ItemKind::Enum`], [`ItemKind::Struct`] or
4520    /// [`ItemKind::Union`].
4521    pub fn is_adt(&self) -> bool {
4522        #[allow(non_exhaustive_omitted_patterns)] match self.kind {
    ItemKind::Enum(..) | ItemKind::Struct(..) | ItemKind::Union(..) => true,
    _ => false,
}matches!(self.kind, ItemKind::Enum(..) | ItemKind::Struct(..) | ItemKind::Union(..))
4523    }
4524
4525    /// Check if this is an [`ItemKind::Struct`] or [`ItemKind::Union`].
4526    pub fn is_struct_or_union(&self) -> bool {
4527        #[allow(non_exhaustive_omitted_patterns)] match self.kind {
    ItemKind::Struct(..) | ItemKind::Union(..) => true,
    _ => false,
}matches!(self.kind, ItemKind::Struct(..) | ItemKind::Union(..))
4528    }
4529
4530    #[track_caller]
pub fn expect_impl(&self) -> &Impl<'hir> {
    let ItemKind::Impl(imp) =
        &self.kind else { expect_failed("expect_impl", self) };
    imp
}expect_methods_self_kind! {
4531        expect_extern_crate, (Option<Symbol>, Ident),
4532            ItemKind::ExternCrate(s, ident), (*s, *ident);
4533
4534        expect_use, (&'hir UsePath<'hir>, UseKind), ItemKind::Use(p, uk), (p, *uk);
4535
4536        expect_static, (Mutability, Ident, &'hir Ty<'hir>, BodyId),
4537            ItemKind::Static(mutbl, ident, ty, body), (*mutbl, *ident, ty, *body);
4538
4539        expect_const, (Ident, &'hir Generics<'hir>, &'hir Ty<'hir>, ConstItemRhs<'hir>),
4540            ItemKind::Const(ident, generics, ty, rhs), (*ident, generics, ty, *rhs);
4541
4542        expect_fn, (Ident, &FnSig<'hir>, &'hir Generics<'hir>, BodyId),
4543            ItemKind::Fn { ident, sig, generics, body, .. }, (*ident, sig, generics, *body);
4544
4545        expect_macro, (Ident, &ast::MacroDef, MacroKinds),
4546            ItemKind::Macro(ident, def, mk), (*ident, def, *mk);
4547
4548        expect_mod, (Ident, &'hir Mod<'hir>), ItemKind::Mod(ident, m), (*ident, m);
4549
4550        expect_foreign_mod, (ExternAbi, &'hir [ForeignItemId]),
4551            ItemKind::ForeignMod { abi, items }, (*abi, items);
4552
4553        expect_global_asm, &'hir InlineAsm<'hir>, ItemKind::GlobalAsm { asm, .. }, asm;
4554
4555        expect_ty_alias, (Ident, &'hir Generics<'hir>, &'hir Ty<'hir>),
4556            ItemKind::TyAlias(ident, generics, ty), (*ident, generics, ty);
4557
4558        expect_enum, (Ident, &'hir Generics<'hir>, &EnumDef<'hir>),
4559            ItemKind::Enum(ident, generics, def), (*ident, generics, def);
4560
4561        expect_struct, (Ident, &'hir Generics<'hir>, &VariantData<'hir>),
4562            ItemKind::Struct(ident, generics, data), (*ident, generics, data);
4563
4564        expect_union, (Ident, &'hir Generics<'hir>, &VariantData<'hir>),
4565            ItemKind::Union(ident, generics, data), (*ident, generics, data);
4566
4567        expect_trait,
4568            (
4569                &'hir ImplRestriction<'hir>,
4570                Constness,
4571                IsAuto,
4572                Safety,
4573                Ident,
4574                &'hir Generics<'hir>,
4575                GenericBounds<'hir>,
4576                &'hir [TraitItemId]
4577            ),
4578            ItemKind::Trait { impl_restriction, constness, is_auto, safety, ident, generics, bounds, items },
4579            (impl_restriction, *constness, *is_auto, *safety, *ident, generics, bounds, items);
4580
4581        expect_trait_alias, (Constness, Ident, &'hir Generics<'hir>, GenericBounds<'hir>),
4582            ItemKind::TraitAlias(constness, ident, generics, bounds), (*constness, *ident, generics, bounds);
4583
4584        expect_impl, &Impl<'hir>, ItemKind::Impl(imp), imp;
4585    }
4586}
4587
4588#[derive(#[automatically_derived]
impl ::core::marker::Copy for Safety { }Copy, #[automatically_derived]
impl ::core::clone::Clone for Safety {
    #[inline]
    fn clone(&self) -> Safety { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for Safety {
    #[inline]
    fn eq(&self, other: &Safety) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Safety {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for Safety {
    #[inline]
    fn partial_cmp(&self, other: &Safety)
        -> ::core::option::Option<::core::cmp::Ordering> {
        ::core::option::Option::Some(::core::cmp::Ord::cmp(self, other))
    }
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for Safety {
    #[inline]
    fn cmp(&self, other: &Safety) -> ::core::cmp::Ordering {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        ::core::cmp::Ord::cmp(&__self_discr, &__arg1_discr)
    }
}Ord, #[automatically_derived]
impl ::core::hash::Hash for Safety {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for Safety {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                Safety::Unsafe => "Unsafe",
                Safety::Safe => "Safe",
            })
    }
}Debug)]
4589#[derive(const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for Safety {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        Safety::Unsafe => { 0usize }
                        Safety::Safe => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self { Safety::Unsafe => {} Safety::Safe => {} }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for Safety {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { Safety::Unsafe }
                    1usize => { Safety::Safe }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `Safety`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for Safety {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self { Safety::Unsafe => {} Safety::Safe => {} }
            }
        }
    };StableHash, #[automatically_derived]
impl ::core::default::Default for Safety {
    #[inline]
    fn default() -> Safety { Self::Unsafe }
}Default)]
4590pub enum Safety {
4591    /// This is the default variant, because the compiler messing up
4592    /// metadata encoding and failing to encode a `Safe` flag, means
4593    /// downstream crates think a thing is `Unsafe` instead of silently
4594    /// treating an unsafe thing as safe.
4595    #[default]
4596    Unsafe,
4597    Safe,
4598}
4599
4600impl Safety {
4601    pub fn prefix_str(self) -> &'static str {
4602        match self {
4603            Self::Unsafe => "unsafe ",
4604            Self::Safe => "",
4605        }
4606    }
4607
4608    #[inline]
4609    pub fn is_unsafe(self) -> bool {
4610        !self.is_safe()
4611    }
4612
4613    #[inline]
4614    pub fn is_safe(self) -> bool {
4615        match self {
4616            Self::Unsafe => false,
4617            Self::Safe => true,
4618        }
4619    }
4620}
4621
4622impl fmt::Display for Safety {
4623    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
4624        f.write_str(match *self {
4625            Self::Unsafe => "unsafe",
4626            Self::Safe => "safe",
4627        })
4628    }
4629}
4630
4631#[derive(#[automatically_derived]
impl ::core::marker::Copy for Constness { }Copy, #[automatically_derived]
impl ::core::clone::Clone for Constness {
    #[inline]
    fn clone(&self) -> Constness { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for Constness {
    #[inline]
    fn eq(&self, other: &Constness) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Constness {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for Constness {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                Constness::Const => "Const",
                Constness::NotConst => "NotConst",
            })
    }
}Debug, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for Constness {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        Constness::Const => { 0usize }
                        Constness::NotConst => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    Constness::Const => {}
                    Constness::NotConst => {}
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for Constness {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { Constness::Const }
                    1usize => { Constness::NotConst }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `Constness`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for Constness {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    Constness::Const => {}
                    Constness::NotConst => {}
                }
            }
        }
    };StableHash)]
4632#[derive(#[automatically_derived]
impl ::core::default::Default for Constness {
    #[inline]
    fn default() -> Constness { Self::Const }
}Default)]
4633pub enum Constness {
4634    #[default]
4635    Const,
4636    NotConst,
4637}
4638
4639impl fmt::Display for Constness {
4640    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
4641        f.write_str(match *self {
4642            Self::Const => "const",
4643            Self::NotConst => "non-const",
4644        })
4645    }
4646}
4647
4648#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for ImplRestriction<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "ImplRestriction", "kind", &self.kind, "span", &&self.span)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for ImplRestriction<'hir> {
    #[inline]
    fn clone(&self) -> ImplRestriction<'hir> {
        let _: ::core::clone::AssertParamIsClone<RestrictionKind<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for ImplRestriction<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            ImplRestriction<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    ImplRestriction {
                        kind: ref __binding_0, span: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4649pub struct ImplRestriction<'hir> {
4650    pub kind: RestrictionKind<'hir>,
4651    pub span: Span,
4652}
4653
4654#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for RestrictionKind<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            RestrictionKind::Unrestricted =>
                ::core::fmt::Formatter::write_str(f, "Unrestricted"),
            RestrictionKind::Restricted(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Restricted", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for RestrictionKind<'hir> {
    #[inline]
    fn clone(&self) -> RestrictionKind<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir Path<'hir, DefId>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for RestrictionKind<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            RestrictionKind<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    RestrictionKind::Unrestricted => {}
                    RestrictionKind::Restricted(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4655pub enum RestrictionKind<'hir> {
4656    /// The restriction does not affect the item.
4657    Unrestricted,
4658    /// The restriction only applies outside of this path.
4659    Restricted(&'hir Path<'hir, DefId>),
4660}
4661
4662/// The actual safety specified in syntax. We may treat
4663/// its safety different within the type system to create a
4664/// "sound by default" system that needs checking this enum
4665/// explicitly to allow unsafe operations.
4666#[derive(#[automatically_derived]
impl ::core::marker::Copy for HeaderSafety { }Copy, #[automatically_derived]
impl ::core::clone::Clone for HeaderSafety {
    #[inline]
    fn clone(&self) -> HeaderSafety {
        let _: ::core::clone::AssertParamIsClone<Safety>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for HeaderSafety {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            HeaderSafety::SafeTargetFeatures =>
                ::core::fmt::Formatter::write_str(f, "SafeTargetFeatures"),
            HeaderSafety::Normal(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Normal",
                    &__self_0),
        }
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for HeaderSafety
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    HeaderSafety::SafeTargetFeatures => {}
                    HeaderSafety::Normal(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, #[automatically_derived]
impl ::core::cmp::PartialEq for HeaderSafety {
    #[inline]
    fn eq(&self, other: &HeaderSafety) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (HeaderSafety::Normal(__self_0),
                    HeaderSafety::Normal(__arg1_0)) => __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for HeaderSafety {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<Safety>;
    }
}Eq)]
4667pub enum HeaderSafety {
4668    /// A safe function annotated with `#[target_features]`.
4669    /// The type system treats this function as an unsafe function,
4670    /// but safety checking will check this enum to treat it as safe
4671    /// and allowing calling other safe target feature functions with
4672    /// the same features without requiring an additional unsafe block.
4673    SafeTargetFeatures,
4674    Normal(Safety),
4675}
4676
4677impl From<Safety> for HeaderSafety {
4678    fn from(v: Safety) -> Self {
4679        Self::Normal(v)
4680    }
4681}
4682
4683#[derive(#[automatically_derived]
impl ::core::marker::Copy for FnHeader { }Copy, #[automatically_derived]
impl ::core::clone::Clone for FnHeader {
    #[inline]
    fn clone(&self) -> FnHeader {
        let _: ::core::clone::AssertParamIsClone<HeaderSafety>;
        let _: ::core::clone::AssertParamIsClone<Constness>;
        let _: ::core::clone::AssertParamIsClone<IsAsync>;
        let _: ::core::clone::AssertParamIsClone<ExternAbi>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for FnHeader {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field4_finish(f, "FnHeader",
            "safety", &self.safety, "constness", &self.constness, "asyncness",
            &self.asyncness, "abi", &&self.abi)
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for FnHeader {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    FnHeader {
                        safety: ref __binding_0,
                        constness: ref __binding_1,
                        asyncness: ref __binding_2,
                        abi: ref __binding_3 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4684pub struct FnHeader {
4685    pub safety: HeaderSafety,
4686    pub constness: Constness,
4687    pub asyncness: IsAsync,
4688    pub abi: ExternAbi,
4689}
4690
4691impl FnHeader {
4692    pub fn is_async(&self) -> bool {
4693        #[allow(non_exhaustive_omitted_patterns)] match self.asyncness {
    IsAsync::Async(_) => true,
    _ => false,
}matches!(self.asyncness, IsAsync::Async(_))
4694    }
4695
4696    pub fn is_const(&self) -> bool {
4697        #[allow(non_exhaustive_omitted_patterns)] match self.constness {
    Constness::Const => true,
    _ => false,
}matches!(self.constness, Constness::Const)
4698    }
4699
4700    pub fn is_unsafe(&self) -> bool {
4701        self.safety().is_unsafe()
4702    }
4703
4704    pub fn is_safe(&self) -> bool {
4705        self.safety().is_safe()
4706    }
4707
4708    pub fn safety(&self) -> Safety {
4709        match self.safety {
4710            HeaderSafety::SafeTargetFeatures => Safety::Unsafe,
4711            HeaderSafety::Normal(safety) => safety,
4712        }
4713    }
4714}
4715
4716#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for ItemKind<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ItemKind::ExternCrate(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f,
                    "ExternCrate", __self_0, &__self_1),
            ItemKind::Use(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Use",
                    __self_0, &__self_1),
            ItemKind::Static(__self_0, __self_1, __self_2, __self_3) =>
                ::core::fmt::Formatter::debug_tuple_field4_finish(f, "Static",
                    __self_0, __self_1, __self_2, &__self_3),
            ItemKind::Const(__self_0, __self_1, __self_2, __self_3) =>
                ::core::fmt::Formatter::debug_tuple_field4_finish(f, "Const",
                    __self_0, __self_1, __self_2, &__self_3),
            ItemKind::Fn {
                sig: __self_0,
                ident: __self_1,
                generics: __self_2,
                body: __self_3,
                has_body: __self_4 } =>
                ::core::fmt::Formatter::debug_struct_field5_finish(f, "Fn",
                    "sig", __self_0, "ident", __self_1, "generics", __self_2,
                    "body", __self_3, "has_body", &__self_4),
            ItemKind::Macro(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Macro",
                    __self_0, __self_1, &__self_2),
            ItemKind::Mod(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Mod",
                    __self_0, &__self_1),
            ItemKind::ForeignMod { abi: __self_0, items: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "ForeignMod", "abi", __self_0, "items", &__self_1),
            ItemKind::GlobalAsm { asm: __self_0, fake_body: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "GlobalAsm", "asm", __self_0, "fake_body", &__self_1),
            ItemKind::TyAlias(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f,
                    "TyAlias", __self_0, __self_1, &__self_2),
            ItemKind::Enum(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Enum",
                    __self_0, __self_1, &__self_2),
            ItemKind::Struct(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Struct",
                    __self_0, __self_1, &__self_2),
            ItemKind::Union(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Union",
                    __self_0, __self_1, &__self_2),
            ItemKind::Trait {
                impl_restriction: __self_0,
                constness: __self_1,
                is_auto: __self_2,
                safety: __self_3,
                ident: __self_4,
                generics: __self_5,
                bounds: __self_6,
                items: __self_7 } => {
                let names: &'static _ =
                    &["impl_restriction", "constness", "is_auto", "safety",
                                "ident", "generics", "bounds", "items"];
                let values: &[&dyn ::core::fmt::Debug] =
                    &[__self_0, __self_1, __self_2, __self_3, __self_4,
                                __self_5, __self_6, &__self_7];
                ::core::fmt::Formatter::debug_struct_fields_finish(f, "Trait",
                    names, values)
            }
            ItemKind::TraitAlias(__self_0, __self_1, __self_2, __self_3) =>
                ::core::fmt::Formatter::debug_tuple_field4_finish(f,
                    "TraitAlias", __self_0, __self_1, __self_2, &__self_3),
            ItemKind::Impl(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Impl",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for ItemKind<'hir> {
    #[inline]
    fn clone(&self) -> ItemKind<'hir> {
        let _: ::core::clone::AssertParamIsClone<Option<Symbol>>;
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<&'hir UsePath<'hir>>;
        let _: ::core::clone::AssertParamIsClone<UseKind>;
        let _: ::core::clone::AssertParamIsClone<Mutability>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<BodyId>;
        let _: ::core::clone::AssertParamIsClone<&'hir Generics<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<ConstItemRhs<'hir>>;
        let _: ::core::clone::AssertParamIsClone<FnSig<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Generics<'hir>>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        let _: ::core::clone::AssertParamIsClone<&'hir ast::MacroDef>;
        let _: ::core::clone::AssertParamIsClone<MacroKinds>;
        let _: ::core::clone::AssertParamIsClone<&'hir Mod<'hir>>;
        let _: ::core::clone::AssertParamIsClone<ExternAbi>;
        let _: ::core::clone::AssertParamIsClone<&'hir [ForeignItemId]>;
        let _: ::core::clone::AssertParamIsClone<&'hir InlineAsm<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Generics<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Generics<'hir>>;
        let _: ::core::clone::AssertParamIsClone<EnumDef<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Generics<'hir>>;
        let _: ::core::clone::AssertParamIsClone<VariantData<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Generics<'hir>>;
        let _: ::core::clone::AssertParamIsClone<VariantData<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir ImplRestriction<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Constness>;
        let _: ::core::clone::AssertParamIsClone<IsAuto>;
        let _: ::core::clone::AssertParamIsClone<Safety>;
        let _: ::core::clone::AssertParamIsClone<&'hir Generics<'hir>>;
        let _: ::core::clone::AssertParamIsClone<GenericBounds<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [TraitItemId]>;
        let _: ::core::clone::AssertParamIsClone<&'hir Generics<'hir>>;
        let _: ::core::clone::AssertParamIsClone<GenericBounds<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Impl<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for ItemKind<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            ItemKind<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    ItemKind::ExternCrate(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::Use(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::Static(ref __binding_0, ref __binding_1,
                        ref __binding_2, ref __binding_3) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::Const(ref __binding_0, ref __binding_1,
                        ref __binding_2, ref __binding_3) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::Fn {
                        sig: ref __binding_0,
                        ident: ref __binding_1,
                        generics: ref __binding_2,
                        body: ref __binding_3,
                        has_body: ref __binding_4 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::Macro(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::Mod(ref __binding_0, ref __binding_1) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::ForeignMod {
                        abi: ref __binding_0, items: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::GlobalAsm {
                        asm: ref __binding_0, fake_body: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::TyAlias(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::Enum(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::Struct(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::Union(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::Trait {
                        impl_restriction: ref __binding_0,
                        constness: ref __binding_1,
                        is_auto: ref __binding_2,
                        safety: ref __binding_3,
                        ident: ref __binding_4,
                        generics: ref __binding_5,
                        bounds: ref __binding_6,
                        items: ref __binding_7 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        { __binding_5.stable_hash(__hcx, __hasher); }
                        { __binding_6.stable_hash(__hcx, __hasher); }
                        { __binding_7.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::TraitAlias(ref __binding_0, ref __binding_1,
                        ref __binding_2, ref __binding_3) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                    ItemKind::Impl(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4717pub enum ItemKind<'hir> {
4718    /// An `extern crate` item, with optional *original* crate name if the crate was renamed.
4719    ///
4720    /// E.g., `extern crate foo` or `extern crate foo_bar as foo`.
4721    ExternCrate(Option<Symbol>, Ident),
4722
4723    /// `use foo::bar::*;` or `use foo::bar::baz as quux;`
4724    ///
4725    /// or just
4726    ///
4727    /// `use foo::bar::baz;` (with `as baz` implicitly on the right).
4728    Use(&'hir UsePath<'hir>, UseKind),
4729
4730    /// A `static` item.
4731    Static(Mutability, Ident, &'hir Ty<'hir>, BodyId),
4732    /// A `const` item.
4733    Const(Ident, &'hir Generics<'hir>, &'hir Ty<'hir>, ConstItemRhs<'hir>),
4734    /// A function declaration.
4735    Fn {
4736        sig: FnSig<'hir>,
4737        ident: Ident,
4738        generics: &'hir Generics<'hir>,
4739        body: BodyId,
4740        /// Whether this function actually has a body.
4741        /// For functions without a body, `body` is synthesized (to avoid ICEs all over the
4742        /// compiler), but that code should never be translated.
4743        has_body: bool,
4744    },
4745    /// A MBE macro definition (`macro_rules!` or `macro`).
4746    Macro(Ident, &'hir ast::MacroDef, MacroKinds),
4747    /// A module.
4748    Mod(Ident, &'hir Mod<'hir>),
4749    /// An external module, e.g. `extern { .. }`.
4750    ForeignMod { abi: ExternAbi, items: &'hir [ForeignItemId] },
4751    /// Module-level inline assembly (from `global_asm!`).
4752    GlobalAsm {
4753        asm: &'hir InlineAsm<'hir>,
4754        /// A fake body which stores typeck results for the global asm's sym_fn
4755        /// operands, which are represented as path expressions. This body contains
4756        /// a single [`ExprKind::InlineAsm`] which points to the asm in the field
4757        /// above, and which is typechecked like a inline asm expr just for the
4758        /// typeck results.
4759        fake_body: BodyId,
4760    },
4761    /// A type alias, e.g., `type Foo = Bar<u8>`.
4762    TyAlias(Ident, &'hir Generics<'hir>, &'hir Ty<'hir>),
4763    /// An enum definition, e.g., `enum Foo<A, B> { C<A>, D<B> }`.
4764    Enum(Ident, &'hir Generics<'hir>, EnumDef<'hir>),
4765    /// A struct definition, e.g., `struct Foo<A> {x: A}`.
4766    Struct(Ident, &'hir Generics<'hir>, VariantData<'hir>),
4767    /// A union definition, e.g., `union Foo<A, B> {x: A, y: B}`.
4768    Union(Ident, &'hir Generics<'hir>, VariantData<'hir>),
4769    /// A trait definition.
4770    Trait {
4771        impl_restriction: &'hir ImplRestriction<'hir>,
4772        constness: Constness,
4773        is_auto: IsAuto,
4774        safety: Safety,
4775        ident: Ident,
4776        generics: &'hir Generics<'hir>,
4777        bounds: GenericBounds<'hir>,
4778        items: &'hir [TraitItemId],
4779    },
4780    /// A trait alias.
4781    TraitAlias(Constness, Ident, &'hir Generics<'hir>, GenericBounds<'hir>),
4782
4783    /// An implementation, e.g., `impl<A> Trait for Foo { .. }`.
4784    Impl(Impl<'hir>),
4785}
4786
4787/// Represents an impl block declaration.
4788///
4789/// E.g., `impl $Type { .. }` or `impl $Trait for $Type { .. }`
4790/// Refer to [`ImplItem`] for an associated item within an impl block.
4791#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Impl<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "Impl",
            "generics", &self.generics, "of_trait", &self.of_trait, "self_ty",
            &self.self_ty, "items", &self.items, "constness",
            &&self.constness)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Impl<'hir> {
    #[inline]
    fn clone(&self) -> Impl<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir Generics<'hir>>;
        let _:
                ::core::clone::AssertParamIsClone<Option<&'hir TraitImplHeader<'hir>>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [ImplItemId]>;
        let _: ::core::clone::AssertParamIsClone<Constness>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for Impl<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Impl<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Impl {
                        generics: ref __binding_0,
                        of_trait: ref __binding_1,
                        self_ty: ref __binding_2,
                        items: ref __binding_3,
                        constness: ref __binding_4 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4792pub struct Impl<'hir> {
4793    pub generics: &'hir Generics<'hir>,
4794    pub of_trait: Option<&'hir TraitImplHeader<'hir>>,
4795    pub self_ty: &'hir Ty<'hir>,
4796    pub items: &'hir [ImplItemId],
4797    pub constness: Constness,
4798}
4799
4800#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for TraitImplHeader<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f,
            "TraitImplHeader", "safety", &self.safety, "polarity",
            &self.polarity, "defaultness", &self.defaultness,
            "defaultness_span", &self.defaultness_span, "trait_ref",
            &&self.trait_ref)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for TraitImplHeader<'hir> {
    #[inline]
    fn clone(&self) -> TraitImplHeader<'hir> {
        let _: ::core::clone::AssertParamIsClone<Safety>;
        let _: ::core::clone::AssertParamIsClone<ImplPolarity>;
        let _: ::core::clone::AssertParamIsClone<Defaultness>;
        let _: ::core::clone::AssertParamIsClone<Option<Span>>;
        let _: ::core::clone::AssertParamIsClone<TraitRef<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for TraitImplHeader<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            TraitImplHeader<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    TraitImplHeader {
                        safety: ref __binding_0,
                        polarity: ref __binding_1,
                        defaultness: ref __binding_2,
                        defaultness_span: ref __binding_3,
                        trait_ref: ref __binding_4 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4801pub struct TraitImplHeader<'hir> {
4802    pub safety: Safety,
4803    pub polarity: ImplPolarity,
4804    pub defaultness: Defaultness,
4805    // We do not put a `Span` in `Defaultness` because it breaks foreign crate metadata
4806    // decoding as `Span`s cannot be decoded when a `Session` is not available.
4807    pub defaultness_span: Option<Span>,
4808    pub trait_ref: TraitRef<'hir>,
4809}
4810
4811impl ItemKind<'_> {
4812    pub fn ident(&self) -> Option<Ident> {
4813        match *self {
4814            ItemKind::ExternCrate(_, ident)
4815            | ItemKind::Use(_, UseKind::Single(ident))
4816            | ItemKind::Static(_, ident, ..)
4817            | ItemKind::Const(ident, ..)
4818            | ItemKind::Fn { ident, .. }
4819            | ItemKind::Macro(ident, ..)
4820            | ItemKind::Mod(ident, ..)
4821            | ItemKind::TyAlias(ident, ..)
4822            | ItemKind::Enum(ident, ..)
4823            | ItemKind::Struct(ident, ..)
4824            | ItemKind::Union(ident, ..)
4825            | ItemKind::Trait { ident, .. }
4826            | ItemKind::TraitAlias(_, ident, ..) => Some(ident),
4827
4828            ItemKind::Use(_, UseKind::Glob | UseKind::ListStem)
4829            | ItemKind::ForeignMod { .. }
4830            | ItemKind::GlobalAsm { .. }
4831            | ItemKind::Impl(_) => None,
4832        }
4833    }
4834
4835    pub fn generics(&self) -> Option<&Generics<'_>> {
4836        Some(match self {
4837            ItemKind::Fn { generics, .. }
4838            | ItemKind::TyAlias(_, generics, _)
4839            | ItemKind::Const(_, generics, _, _)
4840            | ItemKind::Enum(_, generics, _)
4841            | ItemKind::Struct(_, generics, _)
4842            | ItemKind::Union(_, generics, _)
4843            | ItemKind::Trait { generics, .. }
4844            | ItemKind::TraitAlias(_, _, generics, _)
4845            | ItemKind::Impl(Impl { generics, .. }) => generics,
4846            _ => return None,
4847        })
4848    }
4849
4850    pub fn recovered(&self) -> bool {
4851        match self {
4852            ItemKind::Struct(
4853                _,
4854                _,
4855                VariantData::Struct { recovered: ast::Recovered::Yes(_), .. },
4856            ) => true,
4857            ItemKind::Union(
4858                _,
4859                _,
4860                VariantData::Struct { recovered: ast::Recovered::Yes(_), .. },
4861            ) => true,
4862            ItemKind::Enum(_, _, def) => def.variants.iter().any(|v| match v.data {
4863                VariantData::Struct { recovered: ast::Recovered::Yes(_), .. } => true,
4864                _ => false,
4865            }),
4866            _ => false,
4867        }
4868    }
4869}
4870
4871// The bodies for items are stored "out of line", in a separate
4872// hashmap in the `Crate`. Here we just record the hir-id of the item
4873// so it can fetched later.
4874#[derive(#[automatically_derived]
impl ::core::marker::Copy for ForeignItemId { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ForeignItemId {
    #[inline]
    fn clone(&self) -> ForeignItemId {
        let _: ::core::clone::AssertParamIsClone<OwnerId>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for ForeignItemId {
    #[inline]
    fn eq(&self, other: &ForeignItemId) -> bool {
        self.owner_id == other.owner_id
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for ForeignItemId {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<OwnerId>;
    }
}Eq, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for ForeignItemId {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    ForeignItemId { owner_id: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for ForeignItemId {
            fn decode(__decoder: &mut __D) -> Self {
                ForeignItemId {
                    owner_id: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable, #[automatically_derived]
impl ::core::fmt::Debug for ForeignItemId {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f, "ForeignItemId",
            "owner_id", &&self.owner_id)
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            ForeignItemId {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    ForeignItemId { owner_id: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4875pub struct ForeignItemId {
4876    pub owner_id: OwnerId,
4877}
4878
4879impl ForeignItemId {
4880    #[inline]
4881    pub fn hir_id(&self) -> HirId {
4882        // Items are always HIR owners.
4883        HirId::make_owner(self.owner_id.def_id)
4884    }
4885}
4886
4887#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for ForeignItem<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["ident", "kind", "owner_id", "span", "vis_span",
                        "has_delayed_lints"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.ident, &self.kind, &self.owner_id, &self.span,
                        &self.vis_span, &&self.has_delayed_lints];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "ForeignItem",
            names, values)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for ForeignItem<'hir> {
    #[inline]
    fn clone(&self) -> ForeignItem<'hir> {
        let _: ::core::clone::AssertParamIsClone<Ident>;
        let _: ::core::clone::AssertParamIsClone<ForeignItemKind<'hir>>;
        let _: ::core::clone::AssertParamIsClone<OwnerId>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for ForeignItem<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            ForeignItem<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    ForeignItem {
                        ident: ref __binding_0,
                        kind: ref __binding_1,
                        owner_id: ref __binding_2,
                        span: ref __binding_3,
                        vis_span: ref __binding_4,
                        has_delayed_lints: ref __binding_5 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        { __binding_5.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4888pub struct ForeignItem<'hir> {
4889    pub ident: Ident,
4890    pub kind: ForeignItemKind<'hir>,
4891    pub owner_id: OwnerId,
4892    pub span: Span,
4893    pub vis_span: Span,
4894    pub has_delayed_lints: bool,
4895}
4896
4897impl ForeignItem<'_> {
4898    #[inline]
4899    pub fn hir_id(&self) -> HirId {
4900        // Items are always HIR owners.
4901        HirId::make_owner(self.owner_id.def_id)
4902    }
4903
4904    pub fn foreign_item_id(&self) -> ForeignItemId {
4905        ForeignItemId { owner_id: self.owner_id }
4906    }
4907}
4908
4909/// An item within an `extern` block.
4910#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for ForeignItemKind<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ForeignItemKind::Fn(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Fn",
                    __self_0, __self_1, &__self_2),
            ForeignItemKind::Static(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f, "Static",
                    __self_0, __self_1, &__self_2),
            ForeignItemKind::Type =>
                ::core::fmt::Formatter::write_str(f, "Type"),
        }
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for ForeignItemKind<'hir> {
    #[inline]
    fn clone(&self) -> ForeignItemKind<'hir> {
        let _: ::core::clone::AssertParamIsClone<FnSig<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir [Option<Ident>]>;
        let _: ::core::clone::AssertParamIsClone<&'hir Generics<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Mutability>;
        let _: ::core::clone::AssertParamIsClone<Safety>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for ForeignItemKind<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            ForeignItemKind<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    ForeignItemKind::Fn(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ForeignItemKind::Static(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                    ForeignItemKind::Type => {}
                }
            }
        }
    };StableHash)]
4911pub enum ForeignItemKind<'hir> {
4912    /// A foreign function.
4913    ///
4914    /// All argument idents are actually always present (i.e. `Some`), but
4915    /// `&[Option<Ident>]` is used because of code paths shared with `TraitFn`
4916    /// and `FnPtrTy`. The sharing is due to all of these cases not allowing
4917    /// arbitrary patterns for parameters.
4918    Fn(FnSig<'hir>, &'hir [Option<Ident>], &'hir Generics<'hir>),
4919    /// A foreign static item (`static ext: u8`).
4920    Static(&'hir Ty<'hir>, Mutability, Safety),
4921    /// A foreign type.
4922    Type,
4923}
4924
4925/// A variable captured by a closure.
4926#[derive(#[automatically_derived]
impl ::core::fmt::Debug for Upvar {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f, "Upvar", "span",
            &&self.span)
    }
}Debug, #[automatically_derived]
impl ::core::marker::Copy for Upvar { }Copy, #[automatically_derived]
impl ::core::clone::Clone for Upvar {
    #[inline]
    fn clone(&self) -> Upvar {
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for Upvar {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Upvar { span: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4927pub struct Upvar {
4928    /// First span where it is accessed (there can be multiple).
4929    pub span: Span,
4930}
4931
4932// The TraitCandidate's import_ids is empty if the trait is defined in the same module, and
4933// has length > 0 if the trait is found through an chain of imports, starting with the
4934// import/use statement in the scope where the trait is used.
4935#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for TraitCandidate<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f,
            "TraitCandidate", "def_id", &self.def_id, "import_ids",
            &self.import_ids, "lint_ambiguous", &&self.lint_ambiguous)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for TraitCandidate<'hir> {
    #[inline]
    fn clone(&self) -> TraitCandidate<'hir> {
        let _: ::core::clone::AssertParamIsClone<DefId>;
        let _: ::core::clone::AssertParamIsClone<&'hir [LocalDefId]>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for TraitCandidate<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            TraitCandidate<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    TraitCandidate {
                        def_id: ref __binding_0,
                        import_ids: ref __binding_1,
                        lint_ambiguous: ref __binding_2 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4936pub struct TraitCandidate<'hir> {
4937    pub def_id: DefId,
4938    pub import_ids: &'hir [LocalDefId],
4939    // Indicates whether this trait candidate is ambiguously glob imported
4940    // in it's scope. Related to the AMBIGUOUS_GLOB_IMPORTED_TRAITS lint.
4941    // If this is set to true and the trait is used as a result of method lookup, this
4942    // lint is thrown.
4943    pub lint_ambiguous: bool,
4944}
4945
4946#[derive(#[automatically_derived]
impl<'hir> ::core::marker::Copy for OwnerNode<'hir> { }Copy, #[automatically_derived]
impl<'hir> ::core::clone::Clone for OwnerNode<'hir> {
    #[inline]
    fn clone(&self) -> OwnerNode<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir Item<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir ForeignItem<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir TraitItem<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir ImplItem<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Mod<'hir>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::fmt::Debug for OwnerNode<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            OwnerNode::Item(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Item",
                    &__self_0),
            OwnerNode::ForeignItem(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "ForeignItem", &__self_0),
            OwnerNode::TraitItem(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "TraitItem", &__self_0),
            OwnerNode::ImplItem(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "ImplItem", &__self_0),
            OwnerNode::Crate(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Crate",
                    &__self_0),
            OwnerNode::Synthetic =>
                ::core::fmt::Formatter::write_str(f, "Synthetic"),
        }
    }
}Debug, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            OwnerNode<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    OwnerNode::Item(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    OwnerNode::ForeignItem(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    OwnerNode::TraitItem(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    OwnerNode::ImplItem(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    OwnerNode::Crate(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    OwnerNode::Synthetic => {}
                }
            }
        }
    };StableHash)]
4947pub enum OwnerNode<'hir> {
4948    Item(&'hir Item<'hir>),
4949    ForeignItem(&'hir ForeignItem<'hir>),
4950    TraitItem(&'hir TraitItem<'hir>),
4951    ImplItem(&'hir ImplItem<'hir>),
4952    Crate(&'hir Mod<'hir>),
4953    Synthetic,
4954}
4955
4956impl<'hir> OwnerNode<'hir> {
4957    pub fn span(&self) -> Span {
4958        match self {
4959            OwnerNode::Item(Item { span, .. })
4960            | OwnerNode::ForeignItem(ForeignItem { span, .. })
4961            | OwnerNode::ImplItem(ImplItem { span, .. })
4962            | OwnerNode::TraitItem(TraitItem { span, .. }) => *span,
4963            OwnerNode::Crate(Mod { spans: ModSpans { inner_span, .. }, .. }) => *inner_span,
4964            OwnerNode::Synthetic => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
4965        }
4966    }
4967
4968    pub fn fn_sig(self) -> Option<&'hir FnSig<'hir>> {
4969        match self {
4970            OwnerNode::TraitItem(TraitItem { kind: TraitItemKind::Fn(fn_sig, _), .. })
4971            | OwnerNode::ImplItem(ImplItem { kind: ImplItemKind::Fn(fn_sig, _), .. })
4972            | OwnerNode::Item(Item { kind: ItemKind::Fn { sig: fn_sig, .. }, .. })
4973            | OwnerNode::ForeignItem(ForeignItem {
4974                kind: ForeignItemKind::Fn(fn_sig, _, _), ..
4975            }) => Some(fn_sig),
4976            _ => None,
4977        }
4978    }
4979
4980    pub fn fn_decl(self) -> Option<&'hir FnDecl<'hir>> {
4981        match self {
4982            OwnerNode::TraitItem(TraitItem { kind: TraitItemKind::Fn(fn_sig, _), .. })
4983            | OwnerNode::ImplItem(ImplItem { kind: ImplItemKind::Fn(fn_sig, _), .. })
4984            | OwnerNode::Item(Item { kind: ItemKind::Fn { sig: fn_sig, .. }, .. })
4985            | OwnerNode::ForeignItem(ForeignItem {
4986                kind: ForeignItemKind::Fn(fn_sig, _, _), ..
4987            }) => Some(fn_sig.decl),
4988            _ => None,
4989        }
4990    }
4991
4992    pub fn body_id(&self) -> Option<BodyId> {
4993        match self {
4994            OwnerNode::Item(Item {
4995                kind:
4996                    ItemKind::Static(_, _, _, body)
4997                    | ItemKind::Const(.., ConstItemRhs::Body(body))
4998                    | ItemKind::Fn { body, .. },
4999                ..
5000            })
5001            | OwnerNode::TraitItem(TraitItem {
5002                kind:
5003                    TraitItemKind::Fn(_, TraitFn::Provided(body))
5004                    | TraitItemKind::Const(_, Some(ConstItemRhs::Body(body)), _),
5005                ..
5006            })
5007            | OwnerNode::ImplItem(ImplItem {
5008                kind: ImplItemKind::Fn(_, body) | ImplItemKind::Const(_, ConstItemRhs::Body(body)),
5009                ..
5010            }) => Some(*body),
5011            _ => None,
5012        }
5013    }
5014
5015    pub fn generics(self) -> Option<&'hir Generics<'hir>> {
5016        Node::generics(self.into())
5017    }
5018
5019    pub fn def_id(self) -> OwnerId {
5020        match self {
5021            OwnerNode::Item(Item { owner_id, .. })
5022            | OwnerNode::TraitItem(TraitItem { owner_id, .. })
5023            | OwnerNode::ImplItem(ImplItem { owner_id, .. })
5024            | OwnerNode::ForeignItem(ForeignItem { owner_id, .. }) => *owner_id,
5025            OwnerNode::Crate(..) => crate::CRATE_HIR_ID.owner,
5026            OwnerNode::Synthetic => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
5027        }
5028    }
5029
5030    /// Check if node is an impl block.
5031    pub fn is_impl_block(&self) -> bool {
5032        #[allow(non_exhaustive_omitted_patterns)] match self {
    OwnerNode::Item(Item { kind: ItemKind::Impl(_), .. }) => true,
    _ => false,
}matches!(self, OwnerNode::Item(Item { kind: ItemKind::Impl(_), .. }))
5033    }
5034
5035    #[track_caller]
pub fn expect_trait_item(&self) -> &'hir TraitItem<'hir> {
    let OwnerNode::TraitItem(n) =
        self else { expect_failed("expect_trait_item", self) };
    n
}expect_methods_self! {
5036        expect_item,         &'hir Item<'hir>,        OwnerNode::Item(n),        n;
5037        expect_foreign_item, &'hir ForeignItem<'hir>, OwnerNode::ForeignItem(n), n;
5038        expect_impl_item,    &'hir ImplItem<'hir>,    OwnerNode::ImplItem(n),    n;
5039        expect_trait_item,   &'hir TraitItem<'hir>,   OwnerNode::TraitItem(n),   n;
5040    }
5041}
5042
5043impl<'hir> From<&'hir Item<'hir>> for OwnerNode<'hir> {
5044    fn from(val: &'hir Item<'hir>) -> Self {
5045        OwnerNode::Item(val)
5046    }
5047}
5048
5049impl<'hir> From<&'hir ForeignItem<'hir>> for OwnerNode<'hir> {
5050    fn from(val: &'hir ForeignItem<'hir>) -> Self {
5051        OwnerNode::ForeignItem(val)
5052    }
5053}
5054
5055impl<'hir> From<&'hir ImplItem<'hir>> for OwnerNode<'hir> {
5056    fn from(val: &'hir ImplItem<'hir>) -> Self {
5057        OwnerNode::ImplItem(val)
5058    }
5059}
5060
5061impl<'hir> From<&'hir TraitItem<'hir>> for OwnerNode<'hir> {
5062    fn from(val: &'hir TraitItem<'hir>) -> Self {
5063        OwnerNode::TraitItem(val)
5064    }
5065}
5066
5067impl<'hir> From<OwnerNode<'hir>> for Node<'hir> {
5068    fn from(val: OwnerNode<'hir>) -> Self {
5069        match val {
5070            OwnerNode::Item(n) => Node::Item(n),
5071            OwnerNode::ForeignItem(n) => Node::ForeignItem(n),
5072            OwnerNode::ImplItem(n) => Node::ImplItem(n),
5073            OwnerNode::TraitItem(n) => Node::TraitItem(n),
5074            OwnerNode::Crate(n) => Node::Crate(n),
5075            OwnerNode::Synthetic => Node::Synthetic,
5076        }
5077    }
5078}
5079
5080#[derive(#[automatically_derived]
impl<'hir> ::core::marker::Copy for Node<'hir> { }Copy, #[automatically_derived]
impl<'hir> ::core::clone::Clone for Node<'hir> {
    #[inline]
    fn clone(&self) -> Node<'hir> {
        let _: ::core::clone::AssertParamIsClone<&'hir Param<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Item<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir ForeignItem<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir TraitItem<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir ImplItem<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Variant<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir FieldDef<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir AnonConst>;
        let _: ::core::clone::AssertParamIsClone<&'hir ConstBlock>;
        let _: ::core::clone::AssertParamIsClone<&'hir ConstArg<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Expr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir ExprField<'hir>>;
        let _:
                ::core::clone::AssertParamIsClone<&'hir ConstArgExprField<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Stmt<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir PathSegment<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Ty<'hir>>;
        let _:
                ::core::clone::AssertParamIsClone<&'hir AssocItemConstraint<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir TraitRef<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir OpaqueTy<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir TyPat<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Pat<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir PatField<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir PatExpr<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Arm<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Block<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir LetStmt<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir VariantData<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Lifetime>;
        let _: ::core::clone::AssertParamIsClone<&'hir GenericParam<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir Mod<'hir>>;
        let _: ::core::clone::AssertParamIsClone<&'hir InferArg>;
        let _: ::core::clone::AssertParamIsClone<&'hir WherePredicate<'hir>>;
        let _:
                ::core::clone::AssertParamIsClone<&'hir PreciseCapturingNonLifetimeArg>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::fmt::Debug for Node<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Node::Param(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Param",
                    &__self_0),
            Node::Item(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Item",
                    &__self_0),
            Node::ForeignItem(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "ForeignItem", &__self_0),
            Node::TraitItem(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "TraitItem", &__self_0),
            Node::ImplItem(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "ImplItem", &__self_0),
            Node::Variant(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Variant", &__self_0),
            Node::Field(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Field",
                    &__self_0),
            Node::AnonConst(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "AnonConst", &__self_0),
            Node::ConstBlock(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "ConstBlock", &__self_0),
            Node::ConstArg(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "ConstArg", &__self_0),
            Node::Expr(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Expr",
                    &__self_0),
            Node::ExprField(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "ExprField", &__self_0),
            Node::ConstArgExprField(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "ConstArgExprField", &__self_0),
            Node::Stmt(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Stmt",
                    &__self_0),
            Node::PathSegment(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "PathSegment", &__self_0),
            Node::Ty(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Ty",
                    &__self_0),
            Node::AssocItemConstraint(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "AssocItemConstraint", &__self_0),
            Node::TraitRef(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "TraitRef", &__self_0),
            Node::OpaqueTy(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "OpaqueTy", &__self_0),
            Node::TyPat(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "TyPat",
                    &__self_0),
            Node::Pat(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Pat",
                    &__self_0),
            Node::PatField(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "PatField", &__self_0),
            Node::PatExpr(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "PatExpr", &__self_0),
            Node::Arm(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Arm",
                    &__self_0),
            Node::Block(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Block",
                    &__self_0),
            Node::LetStmt(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "LetStmt", &__self_0),
            Node::Ctor(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Ctor",
                    &__self_0),
            Node::Lifetime(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Lifetime", &__self_0),
            Node::GenericParam(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "GenericParam", &__self_0),
            Node::Crate(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Crate",
                    &__self_0),
            Node::Infer(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Infer",
                    &__self_0),
            Node::WherePredicate(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "WherePredicate", &__self_0),
            Node::PreciseCapturingNonLifetimeArg(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "PreciseCapturingNonLifetimeArg", &__self_0),
            Node::Synthetic =>
                ::core::fmt::Formatter::write_str(f, "Synthetic"),
            Node::Err(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Err",
                    &__self_0),
        }
    }
}Debug, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            Node<'hir> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    Node::Param(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::Item(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::ForeignItem(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::TraitItem(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::ImplItem(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::Variant(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::Field(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::AnonConst(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::ConstBlock(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::ConstArg(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::Expr(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::ExprField(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::ConstArgExprField(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::Stmt(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::PathSegment(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::Ty(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::AssocItemConstraint(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::TraitRef(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::OpaqueTy(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::TyPat(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::Pat(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::PatField(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::PatExpr(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::Arm(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::Block(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::LetStmt(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::Ctor(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::Lifetime(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::GenericParam(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::Crate(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::Infer(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::WherePredicate(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::PreciseCapturingNonLifetimeArg(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Node::Synthetic => {}
                    Node::Err(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
5081pub enum Node<'hir> {
5082    Param(&'hir Param<'hir>),
5083    Item(&'hir Item<'hir>),
5084    ForeignItem(&'hir ForeignItem<'hir>),
5085    TraitItem(&'hir TraitItem<'hir>),
5086    ImplItem(&'hir ImplItem<'hir>),
5087    Variant(&'hir Variant<'hir>),
5088    Field(&'hir FieldDef<'hir>),
5089    AnonConst(&'hir AnonConst),
5090    ConstBlock(&'hir ConstBlock),
5091    ConstArg(&'hir ConstArg<'hir>),
5092    Expr(&'hir Expr<'hir>),
5093    ExprField(&'hir ExprField<'hir>),
5094    ConstArgExprField(&'hir ConstArgExprField<'hir>),
5095    Stmt(&'hir Stmt<'hir>),
5096    PathSegment(&'hir PathSegment<'hir>),
5097    Ty(&'hir Ty<'hir>),
5098    AssocItemConstraint(&'hir AssocItemConstraint<'hir>),
5099    TraitRef(&'hir TraitRef<'hir>),
5100    OpaqueTy(&'hir OpaqueTy<'hir>),
5101    TyPat(&'hir TyPat<'hir>),
5102    Pat(&'hir Pat<'hir>),
5103    PatField(&'hir PatField<'hir>),
5104    /// Needed as its own node with its own HirId for tracking
5105    /// the unadjusted type of literals within patterns
5106    /// (e.g. byte str literals not being of slice type).
5107    PatExpr(&'hir PatExpr<'hir>),
5108    Arm(&'hir Arm<'hir>),
5109    Block(&'hir Block<'hir>),
5110    LetStmt(&'hir LetStmt<'hir>),
5111    /// `Ctor` refers to the constructor of an enum variant or struct. Only tuple or unit variants
5112    /// with synthesized constructors.
5113    Ctor(&'hir VariantData<'hir>),
5114    Lifetime(&'hir Lifetime),
5115    GenericParam(&'hir GenericParam<'hir>),
5116    Crate(&'hir Mod<'hir>),
5117    Infer(&'hir InferArg),
5118    WherePredicate(&'hir WherePredicate<'hir>),
5119    PreciseCapturingNonLifetimeArg(&'hir PreciseCapturingNonLifetimeArg),
5120    // Created by query feeding
5121    Synthetic,
5122    Err(Span),
5123}
5124
5125impl<'hir> Node<'hir> {
5126    /// Get the identifier of this `Node`, if applicable.
5127    ///
5128    /// # Edge cases
5129    ///
5130    /// Calling `.ident()` on a [`Node::Ctor`] will return `None`
5131    /// because `Ctor`s do not have identifiers themselves.
5132    /// Instead, call `.ident()` on the parent struct/variant, like so:
5133    ///
5134    /// ```ignore (illustrative)
5135    /// ctor
5136    ///     .ctor_hir_id()
5137    ///     .map(|ctor_id| tcx.parent_hir_node(ctor_id))
5138    ///     .and_then(|parent| parent.ident())
5139    /// ```
5140    pub fn ident(&self) -> Option<Ident> {
5141        match self {
5142            Node::Item(item) => item.kind.ident(),
5143            Node::TraitItem(TraitItem { ident, .. })
5144            | Node::ImplItem(ImplItem { ident, .. })
5145            | Node::ForeignItem(ForeignItem { ident, .. })
5146            | Node::Field(FieldDef { ident, .. })
5147            | Node::Variant(Variant { ident, .. })
5148            | Node::PathSegment(PathSegment { ident, .. }) => Some(*ident),
5149            Node::Lifetime(lt) => Some(lt.ident),
5150            Node::GenericParam(p) => Some(p.name.ident()),
5151            Node::AssocItemConstraint(c) => Some(c.ident),
5152            Node::PatField(f) => Some(f.ident),
5153            Node::ExprField(f) => Some(f.ident),
5154            Node::ConstArgExprField(f) => Some(f.field),
5155            Node::PreciseCapturingNonLifetimeArg(a) => Some(a.ident),
5156            Node::Param(..)
5157            | Node::AnonConst(..)
5158            | Node::ConstBlock(..)
5159            | Node::ConstArg(..)
5160            | Node::Expr(..)
5161            | Node::Stmt(..)
5162            | Node::Block(..)
5163            | Node::Ctor(..)
5164            | Node::Pat(..)
5165            | Node::TyPat(..)
5166            | Node::PatExpr(..)
5167            | Node::Arm(..)
5168            | Node::LetStmt(..)
5169            | Node::Crate(..)
5170            | Node::Ty(..)
5171            | Node::TraitRef(..)
5172            | Node::OpaqueTy(..)
5173            | Node::Infer(..)
5174            | Node::WherePredicate(..)
5175            | Node::Synthetic
5176            | Node::Err(..) => None,
5177        }
5178    }
5179
5180    pub fn fn_decl(self) -> Option<&'hir FnDecl<'hir>> {
5181        match self {
5182            Node::TraitItem(TraitItem { kind: TraitItemKind::Fn(fn_sig, _), .. })
5183            | Node::ImplItem(ImplItem { kind: ImplItemKind::Fn(fn_sig, _), .. })
5184            | Node::Item(Item { kind: ItemKind::Fn { sig: fn_sig, .. }, .. })
5185            | Node::ForeignItem(ForeignItem { kind: ForeignItemKind::Fn(fn_sig, _, _), .. }) => {
5186                Some(fn_sig.decl)
5187            }
5188            Node::Expr(Expr { kind: ExprKind::Closure(Closure { fn_decl, .. }), .. }) => {
5189                Some(fn_decl)
5190            }
5191            _ => None,
5192        }
5193    }
5194
5195    /// Get a `hir::Impl` if the node is an impl block for the given `trait_def_id`.
5196    pub fn impl_block_of_trait(self, trait_def_id: DefId) -> Option<&'hir Impl<'hir>> {
5197        if let Node::Item(Item { kind: ItemKind::Impl(impl_block), .. }) = self
5198            && let Some(of_trait) = impl_block.of_trait
5199            && let Some(trait_id) = of_trait.trait_ref.trait_def_id()
5200            && trait_id == trait_def_id
5201        {
5202            Some(impl_block)
5203        } else {
5204            None
5205        }
5206    }
5207
5208    pub fn fn_sig(self) -> Option<&'hir FnSig<'hir>> {
5209        match self {
5210            Node::TraitItem(TraitItem { kind: TraitItemKind::Fn(fn_sig, _), .. })
5211            | Node::ImplItem(ImplItem { kind: ImplItemKind::Fn(fn_sig, _), .. })
5212            | Node::Item(Item { kind: ItemKind::Fn { sig: fn_sig, .. }, .. })
5213            | Node::ForeignItem(ForeignItem { kind: ForeignItemKind::Fn(fn_sig, _, _), .. }) => {
5214                Some(fn_sig)
5215            }
5216            _ => None,
5217        }
5218    }
5219
5220    /// Get the type for constants, assoc types, type aliases and statics.
5221    pub fn ty(self) -> Option<&'hir Ty<'hir>> {
5222        match self {
5223            Node::Item(it) => match it.kind {
5224                ItemKind::TyAlias(_, _, ty)
5225                | ItemKind::Static(_, _, ty, _)
5226                | ItemKind::Const(_, _, ty, _) => Some(ty),
5227                ItemKind::Impl(impl_item) => Some(&impl_item.self_ty),
5228                _ => None,
5229            },
5230            Node::TraitItem(it) => match it.kind {
5231                TraitItemKind::Const(ty, _, _) => Some(ty),
5232                TraitItemKind::Type(_, ty) => ty,
5233                _ => None,
5234            },
5235            Node::ImplItem(it) => match it.kind {
5236                ImplItemKind::Const(ty, _) => Some(ty),
5237                ImplItemKind::Type(ty) => Some(ty),
5238                _ => None,
5239            },
5240            Node::ForeignItem(it) => match it.kind {
5241                ForeignItemKind::Static(ty, ..) => Some(ty),
5242                _ => None,
5243            },
5244            Node::GenericParam(param) => match param.kind {
5245                GenericParamKind::Lifetime { .. } => None,
5246                GenericParamKind::Type { default, .. } => default,
5247                GenericParamKind::Const { ty, .. } => Some(ty),
5248            },
5249            _ => None,
5250        }
5251    }
5252
5253    pub fn alias_ty(self) -> Option<&'hir Ty<'hir>> {
5254        match self {
5255            Node::Item(Item { kind: ItemKind::TyAlias(_, _, ty), .. }) => Some(ty),
5256            _ => None,
5257        }
5258    }
5259
5260    #[inline]
5261    pub fn associated_body(&self) -> Option<(LocalDefId, BodyId)> {
5262        match self {
5263            Node::Item(Item {
5264                owner_id,
5265                kind:
5266                    ItemKind::Const(.., ConstItemRhs::Body(body))
5267                    | ItemKind::Static(.., body)
5268                    | ItemKind::Fn { body, .. },
5269                ..
5270            })
5271            | Node::TraitItem(TraitItem {
5272                owner_id,
5273                kind:
5274                    TraitItemKind::Const(_, Some(ConstItemRhs::Body(body)), _)
5275                    | TraitItemKind::Fn(_, TraitFn::Provided(body)),
5276                ..
5277            })
5278            | Node::ImplItem(ImplItem {
5279                owner_id,
5280                kind: ImplItemKind::Const(.., ConstItemRhs::Body(body)) | ImplItemKind::Fn(_, body),
5281                ..
5282            }) => Some((owner_id.def_id, *body)),
5283
5284            Node::Item(Item {
5285                owner_id, kind: ItemKind::GlobalAsm { asm: _, fake_body }, ..
5286            }) => Some((owner_id.def_id, *fake_body)),
5287
5288            Node::Expr(Expr { kind: ExprKind::Closure(Closure { def_id, body, .. }), .. }) => {
5289                Some((*def_id, *body))
5290            }
5291
5292            Node::AnonConst(constant) => Some((constant.def_id, constant.body)),
5293            Node::ConstBlock(constant) => Some((constant.def_id, constant.body)),
5294
5295            _ => None,
5296        }
5297    }
5298
5299    pub fn body_id(&self) -> Option<BodyId> {
5300        Some(self.associated_body()?.1)
5301    }
5302
5303    pub fn generics(self) -> Option<&'hir Generics<'hir>> {
5304        match self {
5305            Node::ForeignItem(ForeignItem {
5306                kind: ForeignItemKind::Fn(_, _, generics), ..
5307            })
5308            | Node::TraitItem(TraitItem { generics, .. })
5309            | Node::ImplItem(ImplItem { generics, .. }) => Some(generics),
5310            Node::Item(item) => item.kind.generics(),
5311            _ => None,
5312        }
5313    }
5314
5315    pub fn as_owner(self) -> Option<OwnerNode<'hir>> {
5316        match self {
5317            Node::Item(i) => Some(OwnerNode::Item(i)),
5318            Node::ForeignItem(i) => Some(OwnerNode::ForeignItem(i)),
5319            Node::TraitItem(i) => Some(OwnerNode::TraitItem(i)),
5320            Node::ImplItem(i) => Some(OwnerNode::ImplItem(i)),
5321            Node::Crate(i) => Some(OwnerNode::Crate(i)),
5322            Node::Synthetic => Some(OwnerNode::Synthetic),
5323            _ => None,
5324        }
5325    }
5326
5327    pub fn fn_kind(self) -> Option<FnKind<'hir>> {
5328        match self {
5329            Node::Item(i) => match i.kind {
5330                ItemKind::Fn { ident, sig, generics, .. } => {
5331                    Some(FnKind::ItemFn(ident, generics, sig.header))
5332                }
5333                _ => None,
5334            },
5335            Node::TraitItem(ti) => match ti.kind {
5336                TraitItemKind::Fn(ref sig, _) => Some(FnKind::Method(ti.ident, sig)),
5337                _ => None,
5338            },
5339            Node::ImplItem(ii) => match ii.kind {
5340                ImplItemKind::Fn(ref sig, _) => Some(FnKind::Method(ii.ident, sig)),
5341                _ => None,
5342            },
5343            Node::Expr(e) => match e.kind {
5344                ExprKind::Closure { .. } => Some(FnKind::Closure),
5345                _ => None,
5346            },
5347            _ => None,
5348        }
5349    }
5350
5351    #[track_caller]
pub fn expect_closure(&self) -> &'hir Closure<'hir> {
    let Node::Expr(Expr { kind: ExprKind::Closure(n), .. }) =
        self else { expect_failed("expect_closure", self) };
    n
}expect_methods_self! {
5352        expect_param,         &'hir Param<'hir>,        Node::Param(n),        n;
5353        expect_item,          &'hir Item<'hir>,         Node::Item(n),         n;
5354        expect_foreign_item,  &'hir ForeignItem<'hir>,  Node::ForeignItem(n),  n;
5355        expect_trait_item,    &'hir TraitItem<'hir>,    Node::TraitItem(n),    n;
5356        expect_impl_item,     &'hir ImplItem<'hir>,     Node::ImplItem(n),     n;
5357        expect_variant,       &'hir Variant<'hir>,      Node::Variant(n),      n;
5358        expect_field,         &'hir FieldDef<'hir>,     Node::Field(n),        n;
5359        expect_anon_const,    &'hir AnonConst,          Node::AnonConst(n),    n;
5360        expect_inline_const,  &'hir ConstBlock,         Node::ConstBlock(n),   n;
5361        expect_expr,          &'hir Expr<'hir>,         Node::Expr(n),         n;
5362        expect_expr_field,    &'hir ExprField<'hir>,    Node::ExprField(n),    n;
5363        expect_stmt,          &'hir Stmt<'hir>,         Node::Stmt(n),         n;
5364        expect_path_segment,  &'hir PathSegment<'hir>,  Node::PathSegment(n),  n;
5365        expect_ty,            &'hir Ty<'hir>,           Node::Ty(n),           n;
5366        expect_assoc_item_constraint,  &'hir AssocItemConstraint<'hir>,  Node::AssocItemConstraint(n),  n;
5367        expect_trait_ref,     &'hir TraitRef<'hir>,     Node::TraitRef(n),     n;
5368        expect_opaque_ty,     &'hir OpaqueTy<'hir>,     Node::OpaqueTy(n),     n;
5369        expect_pat,           &'hir Pat<'hir>,          Node::Pat(n),          n;
5370        expect_pat_field,     &'hir PatField<'hir>,     Node::PatField(n),     n;
5371        expect_arm,           &'hir Arm<'hir>,          Node::Arm(n),          n;
5372        expect_block,         &'hir Block<'hir>,        Node::Block(n),        n;
5373        expect_let_stmt,      &'hir LetStmt<'hir>,      Node::LetStmt(n),      n;
5374        expect_ctor,          &'hir VariantData<'hir>,  Node::Ctor(n),         n;
5375        expect_lifetime,      &'hir Lifetime,           Node::Lifetime(n),     n;
5376        expect_generic_param, &'hir GenericParam<'hir>, Node::GenericParam(n), n;
5377        expect_crate,         &'hir Mod<'hir>,          Node::Crate(n),        n;
5378        expect_infer,         &'hir InferArg,           Node::Infer(n),        n;
5379        expect_closure,       &'hir Closure<'hir>, Node::Expr(Expr { kind: ExprKind::Closure(n), .. }), n;
5380    }
5381}
5382
5383// Some nodes are used a lot. Make sure they don't unintentionally get bigger.
5384#[cfg(target_pointer_width = "64")]
5385mod size_asserts {
5386    use rustc_data_structures::static_assert_size;
5387
5388    use super::*;
5389    // tidy-alphabetical-start
5390    const _: [(); 48] = [(); ::std::mem::size_of::<Block<'_>>()];static_assert_size!(Block<'_>, 48);
5391    const _: [(); 24] = [(); ::std::mem::size_of::<Body<'_>>()];static_assert_size!(Body<'_>, 24);
5392    const _: [(); 64] = [(); ::std::mem::size_of::<Expr<'_>>()];static_assert_size!(Expr<'_>, 64);
5393    const _: [(); 48] = [(); ::std::mem::size_of::<ExprKind<'_>>()];static_assert_size!(ExprKind<'_>, 48);
5394    const _: [(); 40] = [(); ::std::mem::size_of::<FnDecl<'_>>()];static_assert_size!(FnDecl<'_>, 40);
5395    const _: [(); 96] = [(); ::std::mem::size_of::<ForeignItem<'_>>()];static_assert_size!(ForeignItem<'_>, 96);
5396    const _: [(); 56] = [(); ::std::mem::size_of::<ForeignItemKind<'_>>()];static_assert_size!(ForeignItemKind<'_>, 56);
5397    const _: [(); 16] = [(); ::std::mem::size_of::<GenericArg<'_>>()];static_assert_size!(GenericArg<'_>, 16);
5398    const _: [(); 64] = [(); ::std::mem::size_of::<GenericBound<'_>>()];static_assert_size!(GenericBound<'_>, 64);
5399    const _: [(); 56] = [(); ::std::mem::size_of::<Generics<'_>>()];static_assert_size!(Generics<'_>, 56);
5400    const _: [(); 48] = [(); ::std::mem::size_of::<Impl<'_>>()];static_assert_size!(Impl<'_>, 48);
5401    const _: [(); 88] = [(); ::std::mem::size_of::<ImplItem<'_>>()];static_assert_size!(ImplItem<'_>, 88);
5402    const _: [(); 40] = [(); ::std::mem::size_of::<ImplItemKind<'_>>()];static_assert_size!(ImplItemKind<'_>, 40);
5403    const _: [(); 88] = [(); ::std::mem::size_of::<Item<'_>>()];static_assert_size!(Item<'_>, 88);
5404    const _: [(); 64] = [(); ::std::mem::size_of::<ItemKind<'_>>()];static_assert_size!(ItemKind<'_>, 64);
5405    const _: [(); 64] = [(); ::std::mem::size_of::<LetStmt<'_>>()];static_assert_size!(LetStmt<'_>, 64);
5406    const _: [(); 32] = [(); ::std::mem::size_of::<Param<'_>>()];static_assert_size!(Param<'_>, 32);
5407    const _: [(); 80] = [(); ::std::mem::size_of::<Pat<'_>>()];static_assert_size!(Pat<'_>, 80);
5408    const _: [(); 56] = [(); ::std::mem::size_of::<PatKind<'_>>()];static_assert_size!(PatKind<'_>, 56);
5409    const _: [(); 40] = [(); ::std::mem::size_of::<Path<'_>>()];static_assert_size!(Path<'_>, 40);
5410    const _: [(); 48] = [(); ::std::mem::size_of::<PathSegment<'_>>()];static_assert_size!(PathSegment<'_>, 48);
5411    const _: [(); 24] = [(); ::std::mem::size_of::<QPath<'_>>()];static_assert_size!(QPath<'_>, 24);
5412    const _: [(); 12] = [(); ::std::mem::size_of::<Res>()];static_assert_size!(Res, 12);
5413    const _: [(); 32] = [(); ::std::mem::size_of::<Stmt<'_>>()];static_assert_size!(Stmt<'_>, 32);
5414    const _: [(); 16] = [(); ::std::mem::size_of::<StmtKind<'_>>()];static_assert_size!(StmtKind<'_>, 16);
5415    const _: [(); 48] = [(); ::std::mem::size_of::<TraitImplHeader<'_>>()];static_assert_size!(TraitImplHeader<'_>, 48);
5416    const _: [(); 88] = [(); ::std::mem::size_of::<TraitItem<'_>>()];static_assert_size!(TraitItem<'_>, 88);
5417    const _: [(); 48] = [(); ::std::mem::size_of::<TraitItemKind<'_>>()];static_assert_size!(TraitItemKind<'_>, 48);
5418    const _: [(); 48] = [(); ::std::mem::size_of::<Ty<'_>>()];static_assert_size!(Ty<'_>, 48);
5419    const _: [(); 32] = [(); ::std::mem::size_of::<TyKind<'_>>()];static_assert_size!(TyKind<'_>, 32);
5420    // tidy-alphabetical-end
5421}
5422
5423#[cfg(test)]
5424mod tests;