Skip to main content

rustc_hir/
hir.rs

1// ignore-tidy-file-filelength
2use std::borrow::Cow;
3use std::fmt;
4use std::ops::Not;
5
6use rustc_abi::ExternAbi;
7use rustc_ast::util::parser::ExprPrecedence;
8use rustc_ast::{
9    self as ast, FloatTy, InlineAsmOptions, InlineAsmTemplatePiece, IntTy, Label, LitIntType,
10    LitKind, TraitObjectSyntax, UintTy, UnsafeBinderCastKind,
11};
12pub use rustc_ast::{
13    AssignOp, AssignOpKind, AttrId, AttrStyle, BinOp, BinOpKind, BindingMode, BorrowKind,
14    BoundConstness, BoundPolarity, ByRef, CaptureBy, DelimArgs, ImplPolarity, IsAuto,
15    MetaItemInner, MetaItemLit, Movability, Mutability, Pinnedness, UnOp,
16};
17use rustc_attr_ir::Attribute;
18use rustc_data_structures::fingerprint::Fingerprint;
19use rustc_data_structures::fx::FxIndexSet;
20use rustc_data_structures::sorted_map::SortedMap;
21use rustc_data_structures::steal::Steal;
22use rustc_data_structures::tagged_ptr::TaggedRef;
23use rustc_data_structures::unord::UnordMap;
24use rustc_error_messages::{DiagArgValue, IntoDiagArg};
25use rustc_hir_id::{HirId, ItemLocalId, ItemLocalMap, OwnerId};
26use rustc_index::IndexVec;
27use rustc_macros::{Decodable, Encodable, StableHash};
28use rustc_span::def_id::LocalDefId;
29use rustc_span::{
30    BytePos, DUMMY_SP, DesugaringKind, ErrorGuaranteed, Ident, LocalExpnId, Span, Spanned, Symbol,
31    kw, sym,
32};
33use rustc_target::asm::InlineAsmRegOrRegClass;
34use tracing::debug;
35
36use crate::def::{CtorKind, DefKind, MacroKinds, PerNS, Res};
37use crate::def_id::{DefId, LocalDefIdMap};
38use crate::intravisit::{FnKind, VisitorExt};
39use crate::lints::DelayedLints;
40
41#[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)]
42pub enum AngleBrackets {
43    /// E.g. `Path`.
44    Missing,
45    /// E.g. `Path<>`.
46    Empty,
47    /// E.g. `Path<T>`.
48    Full,
49}
50
51#[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)]
52pub enum LifetimeSource {
53    /// E.g. `&Type`, `&'_ Type`, `&'a Type`, `&mut Type`, `&'_ mut Type`, `&'a mut Type`
54    Reference,
55
56    /// E.g. `ContainsLifetime`, `ContainsLifetime<>`, `ContainsLifetime<'_>`,
57    /// `ContainsLifetime<'a>`
58    Path { angle_brackets: AngleBrackets },
59
60    /// E.g. `impl Trait + '_`, `impl Trait + 'a`
61    OutlivesBound,
62
63    /// E.g. `impl Trait + use<'_>`, `impl Trait + use<'a>`
64    PreciseCapturing,
65
66    /// Other usages which have not yet been categorized. Feel free to
67    /// add new sources that you find useful.
68    ///
69    /// Some non-exhaustive examples:
70    /// - `where T: 'a`
71    /// - `fn(_: dyn Trait + 'a)`
72    Other,
73}
74
75#[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)]
76pub enum LifetimeSyntax {
77    /// E.g. `&Type`, `ContainsLifetime`
78    Implicit,
79
80    /// E.g. `&'_ Type`, `ContainsLifetime<'_>`, `impl Trait + '_`, `impl Trait + use<'_>`
81    ExplicitAnonymous,
82
83    /// E.g. `&'a Type`, `ContainsLifetime<'a>`, `impl Trait + 'a`, `impl Trait + use<'a>`
84    ExplicitBound,
85}
86
87impl From<Ident> for LifetimeSyntax {
88    fn from(ident: Ident) -> Self {
89        let name = ident.name;
90
91        if name == sym::empty {
92            {
    ::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");
93        } else if name == kw::UnderscoreLifetime {
94            LifetimeSyntax::ExplicitAnonymous
95        } else {
96            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('\''));
97            LifetimeSyntax::ExplicitBound
98        }
99    }
100}
101
102/// A lifetime. The valid field combinations are non-obvious and not all
103/// combinations are possible. The following example shows some of
104/// them. See also the comments on `LifetimeKind` and `LifetimeSource`.
105///
106/// ```
107/// #[repr(C)]
108/// struct S<'a>(&'a u32);       // res=Param, name='a, source=Reference, syntax=ExplicitBound
109/// unsafe extern "C" {
110///     fn f1(s: S);             // res=Param, name='_, source=Path, syntax=Implicit
111///     fn f2(s: S<'_>);         // res=Param, name='_, source=Path, syntax=ExplicitAnonymous
112///     fn f3<'a>(s: S<'a>);     // res=Param, name='a, source=Path, syntax=ExplicitBound
113/// }
114///
115/// struct St<'a> { x: &'a u32 } // res=Param, name='a, source=Reference, syntax=ExplicitBound
116/// fn f() {
117///     _ = St { x: &0 };        // res=Infer, name='_, source=Path, syntax=Implicit
118///     _ = St::<'_> { x: &0 };  // res=Infer, name='_, source=Path, syntax=ExplicitAnonymous
119/// }
120///
121/// struct Name<'a>(&'a str);    // res=Param,  name='a, source=Reference, syntax=ExplicitBound
122/// const A: Name = Name("a");   // res=Static, name='_, source=Path, syntax=Implicit
123/// const B: &str = "";          // res=Static, name='_, source=Reference, syntax=Implicit
124/// static C: &'_ str = "";      // res=Static, name='_, source=Reference, syntax=ExplicitAnonymous
125/// static D: &'static str = ""; // res=Static, name='static, source=Reference, syntax=ExplicitBound
126///
127/// trait Tr {}
128/// fn tr(_: Box<dyn Tr>) {}     // res=ImplicitObjectLifetimeDefault, name='_, source=Other, syntax=Implicit
129///
130/// fn capture_outlives<'a>() ->
131///     impl FnOnce() + 'a       // res=Param, ident='a, source=OutlivesBound, syntax=ExplicitBound
132/// {
133///     || {}
134/// }
135///
136/// fn capture_precise<'a>() ->
137///     impl FnOnce() + use<'a>  // res=Param, ident='a, source=PreciseCapturing, syntax=ExplicitBound
138/// {
139///     || {}
140/// }
141///
142/// // (commented out because these cases trigger errors)
143/// // struct S1<'a>(&'a str);   // res=Param, name='a, source=Reference, syntax=ExplicitBound
144/// // struct S2(S1);            // res=Error, name='_, source=Path, syntax=Implicit
145/// // struct S3(S1<'_>);        // res=Error, name='_, source=Path, syntax=ExplicitAnonymous
146/// // struct S4(S1<'a>);        // res=Error, name='a, source=Path, syntax=ExplicitBound
147/// ```
148///
149/// Some combinations that cannot occur are `LifetimeSyntax::Implicit` with
150/// `LifetimeSource::OutlivesBound` or `LifetimeSource::PreciseCapturing`
151/// — there's no way to "elide" these lifetimes.
152#[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)]
153// Raise the alignment to at least 4 bytes.
154// This is relied on in other parts of the compiler (for pointer tagging):
155// <https://github.com/rust-lang/rust/blob/ce5fdd7d42aba9a2925692e11af2bd39cf37798a/compiler/rustc_data_structures/src/tagged_ptr.rs#L163>
156// Removing this `repr(4)` will cause the compiler to not build on platforms
157// like `m68k` Linux, where the alignment of u32 and usize is only 2.
158// Since `repr(align)` may only raise alignment, this has no effect on
159// platforms where the alignment is already sufficient.
160#[repr(align(4))]
161pub struct Lifetime {
162    #[stable_hash(ignore)]
163    pub hir_id: HirId,
164
165    /// Either a named lifetime definition (e.g. `'a`, `'static`) or an
166    /// anonymous lifetime (`'_`, either explicitly written, or inserted for
167    /// things like `&type`).
168    pub ident: Ident,
169
170    /// Semantics of this lifetime.
171    pub kind: LifetimeKind,
172
173    /// The context in which the lifetime occurred. See `Lifetime::suggestion`
174    /// for example use.
175    pub source: LifetimeSource,
176
177    /// The syntax that the user used to declare this lifetime. See
178    /// `Lifetime::suggestion` for example use.
179    pub syntax: LifetimeSyntax,
180}
181
182#[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)]
183pub enum ParamName {
184    /// Some user-given name like `T` or `'x`.
185    Plain(Ident),
186
187    /// Indicates an illegal name was given and an error has been
188    /// reported (so we should squelch other derived errors).
189    ///
190    /// Occurs when, e.g., `'_` is used in the wrong place, or a
191    /// lifetime name is duplicated.
192    Error(Ident),
193
194    /// Synthetic name generated when user elided a lifetime in an impl header.
195    ///
196    /// E.g., the lifetimes in cases like these:
197    /// ```ignore (fragment)
198    /// impl Foo for &u32
199    /// impl Foo<'_> for u32
200    /// ```
201    /// in that case, we rewrite to
202    /// ```ignore (fragment)
203    /// impl<'f> Foo for &'f u32
204    /// impl<'f> Foo<'f> for u32
205    /// ```
206    /// where `'f` is something like `Fresh(0)`. The indices are
207    /// unique per impl, but not necessarily continuous.
208    Fresh,
209}
210
211impl ParamName {
212    pub fn ident(&self) -> Ident {
213        match *self {
214            ParamName::Plain(ident) | ParamName::Error(ident) => ident,
215            ParamName::Fresh => Ident::with_dummy_span(kw::UnderscoreLifetime),
216        }
217    }
218}
219
220#[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)]
221pub enum LifetimeKind {
222    /// User-given names or fresh (synthetic) names.
223    Param(LocalDefId),
224
225    /// Implicit lifetime in a context like `dyn Foo`. This is
226    /// distinguished from implicit lifetimes elsewhere because the
227    /// lifetime that they default to must appear elsewhere within the
228    /// enclosing type. This means that, in an `impl Trait` context, we
229    /// don't have to create a parameter for them. That is, `impl
230    /// Trait<Item = &u32>` expands to an opaque type like `type
231    /// Foo<'a> = impl Trait<Item = &'a u32>`, but `impl Trait<item =
232    /// dyn Bar>` expands to `type Foo = impl Trait<Item = dyn Bar +
233    /// 'static>`. The latter uses `ImplicitObjectLifetimeDefault` so
234    /// that surrounding code knows not to create a lifetime
235    /// parameter.
236    ImplicitObjectLifetimeDefault,
237
238    /// Indicates an error during lowering (usually `'_` in wrong place)
239    /// that was already reported.
240    Error(ErrorGuaranteed),
241
242    /// User wrote an anonymous lifetime, either `'_` or nothing (which gets
243    /// converted to `'_`). The semantics of this lifetime should be inferred
244    /// by typechecking code.
245    Infer,
246
247    /// User wrote `'static` or nothing (which gets converted to `'_`).
248    Static,
249}
250
251impl LifetimeKind {
252    fn is_elided(&self) -> bool {
253        match self {
254            LifetimeKind::ImplicitObjectLifetimeDefault | LifetimeKind::Infer => true,
255
256            // It might seem surprising that `Fresh` counts as not *elided*
257            // -- but this is because, as far as the code in the compiler is
258            // concerned -- `Fresh` variants act equivalently to "some fresh name".
259            // They correspond to early-bound regions on an impl, in other words.
260            LifetimeKind::Error(..) | LifetimeKind::Param(..) | LifetimeKind::Static => false,
261        }
262    }
263}
264
265impl fmt::Display for Lifetime {
266    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
267        self.ident.name.fmt(f)
268    }
269}
270
271impl Lifetime {
272    pub fn new(
273        hir_id: HirId,
274        ident: Ident,
275        kind: LifetimeKind,
276        source: LifetimeSource,
277        syntax: LifetimeSyntax,
278    ) -> Lifetime {
279        let lifetime = Lifetime { hir_id, ident, kind, source, syntax };
280
281        // Sanity check: elided lifetimes form a strict subset of anonymous lifetimes.
282        #[cfg(debug_assertions)]
283        match (lifetime.is_elided(), lifetime.is_anonymous()) {
284            (false, false) => {} // e.g. `'a`
285            (false, true) => {}  // e.g. explicit `'_`
286            (true, true) => {}   // e.g. `&x`
287            (true, false) => { ::core::panicking::panic_fmt(format_args!("bad Lifetime")); }panic!("bad Lifetime"),
288        }
289
290        lifetime
291    }
292
293    pub fn is_elided(&self) -> bool {
294        self.kind.is_elided()
295    }
296
297    pub fn is_anonymous(&self) -> bool {
298        self.ident.name == kw::UnderscoreLifetime
299    }
300
301    pub fn is_implicit(&self) -> bool {
302        #[allow(non_exhaustive_omitted_patterns)] match self.syntax {
    LifetimeSyntax::Implicit => true,
    _ => false,
}matches!(self.syntax, LifetimeSyntax::Implicit)
303    }
304
305    pub fn is_static(&self) -> bool {
306        self.kind == LifetimeKind::Static
307    }
308
309    pub fn suggestion(&self, new_lifetime: &str) -> (Span, String) {
310        use LifetimeSource::*;
311        use LifetimeSyntax::*;
312
313        if true {
    if !new_lifetime.starts_with('\'') {
        ::core::panicking::panic("assertion failed: new_lifetime.starts_with(\'\\\'\')")
    };
};debug_assert!(new_lifetime.starts_with('\''));
314
315        match (self.syntax, self.source) {
316            // The user wrote `'a` or `'_`.
317            (ExplicitBound | ExplicitAnonymous, _) => (self.ident.span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}", new_lifetime))
    })format!("{new_lifetime}")),
318
319            // The user wrote `Path<T>`, and omitted the `'_,`.
320            (Implicit, Path { angle_brackets: AngleBrackets::Full }) => {
321                (self.ident.span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}, ", new_lifetime))
    })format!("{new_lifetime}, "))
322            }
323
324            // The user wrote `Path<>`, and omitted the `'_`..
325            (Implicit, Path { angle_brackets: AngleBrackets::Empty }) => {
326                (self.ident.span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}", new_lifetime))
    })format!("{new_lifetime}"))
327            }
328
329            // The user wrote `Path` and omitted the `<'_>`.
330            (Implicit, Path { angle_brackets: AngleBrackets::Missing }) => {
331                (self.ident.span.shrink_to_hi(), ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("<{0}>", new_lifetime))
    })format!("<{new_lifetime}>"))
332            }
333
334            // The user wrote `&type` or `&mut type`.
335            (Implicit, Reference) => (self.ident.span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0} ", new_lifetime))
    })format!("{new_lifetime} ")),
336
337            (Implicit, source) => {
338                {
    ::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:?}")
339            }
340        }
341    }
342}
343
344/// A `Path` is essentially Rust's notion of a name; for instance,
345/// `std::cmp::PartialEq`. It's represented as a sequence of identifiers,
346/// along with a bunch of supporting information.
347#[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)]
348pub struct Path<'hir, R = Res> {
349    pub span: Span,
350    /// The resolution for the path.
351    pub res: R,
352    /// The segments in the path: the things separated by `::`.
353    pub segments: &'hir [PathSegment<'hir>],
354}
355
356/// Up to three resolutions for type, value and macro namespaces.
357pub type UsePath<'hir> = Path<'hir, PerNS<Option<Res>>>;
358
359impl Path<'_> {
360    pub fn is_global(&self) -> bool {
361        self.segments.first().is_some_and(|segment| segment.ident.name == kw::PathRoot)
362    }
363}
364
365/// A segment of a path: an identifier, an optional lifetime, and a set of
366/// types.
367#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for PathSegment<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["ident", "hir_id", "res", "args", "infer_args",
                        "delegation_child_segment"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.ident, &self.hir_id, &self.res, &self.args,
                        &self.infer_args, &&self.delegation_child_segment];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "PathSegment",
            names, values)
    }
}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,
                        delegation_child_segment: 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)]
368pub struct PathSegment<'hir> {
369    /// The identifier portion of this path segment.
370    pub ident: Ident,
371    #[stable_hash(ignore)]
372    pub hir_id: HirId,
373    pub res: Res,
374
375    /// Type/lifetime parameters attached to this path. They come in
376    /// two flavors: `Path<A,B,C>` and `Path(A,B) -> C`. Note that
377    /// this is more than just simple syntactic sugar; the use of
378    /// parens affects the region binding rules, so we preserve the
379    /// distinction.
380    pub args: Option<&'hir GenericArgs<'hir>>,
381
382    /// Whether to infer remaining type parameters, if any.
383    /// This only applies to expression and pattern paths, and
384    /// out of those only the segments with no type parameters
385    /// to begin with, e.g., `Vec::new` is `<Vec<..>>::new::<..>`.
386    pub infer_args: bool,
387
388    /// Whether this segment is a delegation's child segment:
389    /// `reuse Trait::foo`, in this case `foo` is a delegation's child segment.
390    /// Used for faster check during generic args lowering.
391    pub delegation_child_segment: bool,
392}
393
394impl<'hir> PathSegment<'hir> {
395    /// Converts an identifier to the corresponding segment.
396    pub fn new(ident: Ident, hir_id: HirId, res: Res) -> PathSegment<'hir> {
397        PathSegment {
398            ident,
399            hir_id,
400            res,
401            infer_args: true,
402            args: None,
403            delegation_child_segment: false,
404        }
405    }
406
407    pub fn invalid() -> Self {
408        Self::new(Ident::dummy(), HirId::INVALID, Res::Err)
409    }
410
411    pub fn args(&self) -> &GenericArgs<'hir> {
412        if let Some(ref args) = self.args { args } else { GenericArgs::NONE }
413    }
414}
415
416#[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)]
417pub enum ConstItemRhs<'hir> {
418    Body(BodyId),
419    TypeConst(&'hir ConstArg<'hir>),
420}
421
422impl<'hir> ConstItemRhs<'hir> {
423    pub fn hir_id(&self) -> HirId {
424        match self {
425            ConstItemRhs::Body(body_id) => body_id.hir_id,
426            ConstItemRhs::TypeConst(ct_arg) => ct_arg.hir_id,
427        }
428    }
429
430    pub fn span<'tcx>(&self, tcx: impl crate::intravisit::HirTyCtxt<'tcx>) -> Span {
431        match self {
432            ConstItemRhs::Body(body_id) => tcx.hir_body(*body_id).value.span,
433            ConstItemRhs::TypeConst(ct_arg) => ct_arg.span,
434        }
435    }
436}
437
438/// A constant that enters the type system, used for arguments to const generics (e.g. array lengths).
439///
440/// These are distinct from [`AnonConst`] as anon consts in the type system are not allowed
441/// to use any generic parameters, therefore we must represent `N` differently. Additionally
442/// future designs for supporting generic parameters in const arguments will likely not use
443/// an anon const based design.
444///
445/// So, `ConstArg` (specifically, [`ConstArgKind`]) distinguishes between const args
446/// that are [just paths](ConstArgKind::Path) (currently just bare const params)
447/// versus const args that are literals or have arbitrary computations (e.g., `{ 1 + 3 }`).
448///
449/// For an explanation of the `Unambig` generic parameter see the dev-guide:
450/// <https://rustc-dev-guide.rust-lang.org/ambig-unambig-ty-and-consts.html>
451#[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)]
452#[repr(C)]
453pub struct ConstArg<'hir, Unambig = ()> {
454    #[stable_hash(ignore)]
455    pub hir_id: HirId,
456    pub kind: ConstArgKind<'hir, Unambig>,
457    pub span: Span,
458}
459
460impl<'hir> ConstArg<'hir, AmbigArg> {
461    /// Converts a `ConstArg` in an ambiguous position to one in an unambiguous position.
462    ///
463    /// Functions accepting unambiguous consts may expect the [`ConstArgKind::Infer`] variant
464    /// to be used. Care should be taken to separately handle infer consts when calling this
465    /// function as it cannot be handled by downstream code making use of the returned const.
466    ///
467    /// In practice this may mean overriding the [`Visitor::visit_infer`][visit_infer] method on hir visitors, or
468    /// specifically matching on [`GenericArg::Infer`] when handling generic arguments.
469    ///
470    /// [visit_infer]: [rustc_hir::intravisit::Visitor::visit_infer]
471    pub fn as_unambig_ct(&self) -> &ConstArg<'hir> {
472        // SAFETY: `ConstArg` is `repr(C)` and `ConstArgKind` is marked `repr(u8)` so that the
473        // layout is the same across different ZST type arguments.
474        let ptr = self as *const ConstArg<'hir, AmbigArg> as *const ConstArg<'hir, ()>;
475        unsafe { &*ptr }
476    }
477}
478
479impl<'hir> ConstArg<'hir> {
480    /// Converts a `ConstArg` in an unambiguous position to one in an ambiguous position. This is
481    /// fallible as the [`ConstArgKind::Infer`] variant is not present in ambiguous positions.
482    ///
483    /// Functions accepting ambiguous consts will not handle the [`ConstArgKind::Infer`] variant, if
484    /// infer consts are relevant to you then care should be taken to handle them separately.
485    pub fn try_as_ambig_ct(&self) -> Option<&ConstArg<'hir, AmbigArg>> {
486        if let ConstArgKind::Infer(()) = self.kind {
487            return None;
488        }
489
490        // SAFETY: `ConstArg` is `repr(C)` and `ConstArgKind` is marked `repr(u8)` so that the layout is
491        // the same across different ZST type arguments. We also asserted that the `self` is
492        // not a `ConstArgKind::Infer` so there is no risk of transmuting a `()` to `AmbigArg`.
493        let ptr = self as *const ConstArg<'hir> as *const ConstArg<'hir, AmbigArg>;
494        Some(unsafe { &*ptr })
495    }
496}
497
498impl<'hir, Unambig> ConstArg<'hir, Unambig> {
499    pub fn anon_const_hir_id(&self) -> Option<HirId> {
500        match self.kind {
501            ConstArgKind::Anon(ac) => Some(ac.hir_id),
502            _ => None,
503        }
504    }
505}
506
507/// See [`ConstArg`].
508#[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)]
509#[repr(u8, C)]
510pub enum ConstArgKind<'hir, Unambig = ()> {
511    Tup(&'hir [&'hir ConstArg<'hir>]),
512    /// **Note:** Currently this is only used for bare const params
513    /// (`N` where `fn foo<const N: usize>(...)`),
514    /// not paths to any const (`N` where `const N: usize = ...`).
515    ///
516    /// However, in the future, we'll be using it for all of those.
517    Path(QPath<'hir>),
518    Anon(&'hir AnonConst),
519    /// Represents construction of struct/struct variants
520    Struct(QPath<'hir>, &'hir [&'hir ConstArgExprField<'hir>]),
521    /// Tuple constructor variant
522    TupleCall(QPath<'hir>, &'hir [&'hir ConstArg<'hir>]),
523    /// Array literal argument
524    Array(&'hir ConstArgArrayExpr<'hir>),
525    /// Error const
526    Error(ErrorGuaranteed),
527    /// This variant is not always used to represent inference consts, sometimes
528    /// [`GenericArg::Infer`] is used instead.
529    Infer(Unambig),
530    Literal {
531        lit: LitKind,
532        negated: bool,
533    },
534}
535
536#[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)]
537pub struct ConstArgExprField<'hir> {
538    pub hir_id: HirId,
539    pub span: Span,
540    pub field: Ident,
541    pub expr: &'hir ConstArg<'hir>,
542}
543
544#[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)]
545pub struct ConstArgArrayExpr<'hir> {
546    pub span: Span,
547    pub elems: &'hir [&'hir ConstArg<'hir>],
548}
549
550#[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)]
551pub struct InferArg {
552    #[stable_hash(ignore)]
553    pub hir_id: HirId,
554    pub span: Span,
555}
556
557impl InferArg {
558    pub fn to_ty(&self) -> Ty<'static> {
559        Ty { kind: TyKind::Infer(()), span: self.span, hir_id: self.hir_id }
560    }
561}
562
563#[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)]
564pub enum GenericArg<'hir> {
565    Lifetime(&'hir Lifetime),
566    Type(&'hir Ty<'hir, AmbigArg>),
567    Const(&'hir ConstArg<'hir, AmbigArg>),
568    /// Inference variables in [`GenericArg`] are always represented by
569    /// `GenericArg::Infer` instead of the `Infer` variants on [`TyKind`] and
570    /// [`ConstArgKind`] as it is not clear until hir ty lowering whether a
571    /// `_` argument is a type or const argument.
572    ///
573    /// However, some builtin types' generic arguments are represented by [`TyKind`]
574    /// without a [`GenericArg`], instead directly storing a [`Ty`] or [`ConstArg`]. In
575    /// such cases they *are* represented by the `Infer` variants on [`TyKind`] and
576    /// [`ConstArgKind`] as it is not ambiguous whether the argument is a type or const.
577    Infer(InferArg),
578}
579
580impl GenericArg<'_> {
581    pub fn span(&self) -> Span {
582        match self {
583            GenericArg::Lifetime(l) => l.ident.span,
584            GenericArg::Type(t) => t.span,
585            GenericArg::Const(c) => c.span,
586            GenericArg::Infer(i) => i.span,
587        }
588    }
589
590    pub fn hir_id(&self) -> HirId {
591        match self {
592            GenericArg::Lifetime(l) => l.hir_id,
593            GenericArg::Type(t) => t.hir_id,
594            GenericArg::Const(c) => c.hir_id,
595            GenericArg::Infer(i) => i.hir_id,
596        }
597    }
598
599    pub fn descr(&self) -> &'static str {
600        match self {
601            GenericArg::Lifetime(_) => "lifetime",
602            GenericArg::Type(_) => "type",
603            GenericArg::Const(_) => "constant",
604            GenericArg::Infer(_) => "placeholder",
605        }
606    }
607
608    pub fn to_ord(&self) -> ast::ParamKindOrd {
609        match self {
610            GenericArg::Lifetime(_) => ast::ParamKindOrd::Lifetime,
611            GenericArg::Type(_) | GenericArg::Const(_) | GenericArg::Infer(_) => {
612                ast::ParamKindOrd::TypeOrConst
613            }
614        }
615    }
616
617    pub fn is_ty_or_const(&self) -> bool {
618        match self {
619            GenericArg::Lifetime(_) => false,
620            GenericArg::Type(_) | GenericArg::Const(_) | GenericArg::Infer(_) => true,
621        }
622    }
623}
624
625/// The generic arguments and associated item constraints of a path segment.
626#[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)]
627pub struct GenericArgs<'hir> {
628    /// The generic arguments for this path segment.
629    pub args: &'hir [GenericArg<'hir>],
630    /// The associated item constraints for this path segment.
631    pub constraints: &'hir [AssocItemConstraint<'hir>],
632    /// Whether the arguments were written in parenthesized form (e.g., `Fn(T) -> U`).
633    ///
634    /// This is required mostly for pretty-printing and diagnostics,
635    /// but also for changing lifetime elision rules to be "function-like".
636    pub parenthesized: GenericArgsParentheses,
637    /// The span encompassing the arguments, constraints and the surrounding brackets (`<>` or `()`).
638    ///
639    /// For example:
640    ///
641    /// ```ignore (illustrative)
642    ///       Foo<A, B, AssocTy = D>           Fn(T, U, V) -> W
643    ///          ^^^^^^^^^^^^^^^^^^^             ^^^^^^^^^
644    /// ```
645    ///
646    /// Note that this may be:
647    /// - empty, if there are no generic brackets (but there may be hidden lifetimes)
648    /// - dummy, if this was generated during desugaring
649    pub span_ext: Span,
650}
651
652impl<'hir> GenericArgs<'hir> {
653    pub const NONE: &'hir GenericArgs<'hir> = &GenericArgs {
654        args: &[],
655        constraints: &[],
656        parenthesized: GenericArgsParentheses::No,
657        span_ext: DUMMY_SP,
658    };
659
660    /// Obtain the list of input types and the output type if the generic arguments are parenthesized.
661    ///
662    /// Returns the `Ty0, Ty1, ...` and the `RetTy` in `Trait(Ty0, Ty1, ...) -> RetTy`.
663    /// Panics if the parenthesized arguments have an incorrect form (this shouldn't happen).
664    pub fn paren_sugar_inputs_output(&self) -> Option<(&[Ty<'hir>], &Ty<'hir>)> {
665        if self.parenthesized != GenericArgsParentheses::ParenSugar {
666            return None;
667        }
668
669        let inputs = self
670            .args
671            .iter()
672            .find_map(|arg| {
673                let GenericArg::Type(ty) = arg else { return None };
674                let TyKind::Tup(tys) = &ty.kind else { return None };
675                Some(tys)
676            })
677            .unwrap();
678
679        Some((inputs, self.paren_sugar_output_inner()))
680    }
681
682    /// Obtain the output type if the generic arguments are parenthesized.
683    ///
684    /// Returns the `RetTy` in `Trait(Ty0, Ty1, ...) -> RetTy`.
685    /// Panics if the parenthesized arguments have an incorrect form (this shouldn't happen).
686    pub fn paren_sugar_output(&self) -> Option<&Ty<'hir>> {
687        (self.parenthesized == GenericArgsParentheses::ParenSugar)
688            .then(|| self.paren_sugar_output_inner())
689    }
690
691    fn paren_sugar_output_inner(&self) -> &Ty<'hir> {
692        let [constraint] = self.constraints.try_into().unwrap();
693        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);
694        constraint.ty().unwrap()
695    }
696
697    pub fn has_err(&self) -> Option<ErrorGuaranteed> {
698        self.args
699            .iter()
700            .find_map(|arg| {
701                let GenericArg::Type(ty) = arg else { return None };
702                let TyKind::Err(guar) = ty.kind else { return None };
703                Some(guar)
704            })
705            .or_else(|| {
706                self.constraints.iter().find_map(|constraint| {
707                    let TyKind::Err(guar) = constraint.ty()?.kind else { return None };
708                    Some(guar)
709                })
710            })
711    }
712
713    #[inline]
714    pub fn num_lifetime_args(&self) -> usize {
715        self.args.iter().filter(|arg| #[allow(non_exhaustive_omitted_patterns)] match arg {
    GenericArg::Lifetime(_) => true,
    _ => false,
}matches!(arg, GenericArg::Lifetime(_))).count()
716    }
717
718    #[inline]
719    pub fn has_lifetime_args(&self) -> bool {
720        self.args.iter().any(|arg| #[allow(non_exhaustive_omitted_patterns)] match arg {
    GenericArg::Lifetime(_) => true,
    _ => false,
}matches!(arg, GenericArg::Lifetime(_)))
721    }
722
723    #[inline]
724    /// This function returns the number of type and const generic params.
725    /// It should only be used for diagnostics.
726    pub fn num_generic_params(&self) -> usize {
727        self.args.iter().filter(|arg| !#[allow(non_exhaustive_omitted_patterns)] match arg {
    GenericArg::Lifetime(_) => true,
    _ => false,
}matches!(arg, GenericArg::Lifetime(_))).count()
728    }
729
730    /// The span encompassing the arguments and constraints[^1] inside the surrounding brackets.
731    ///
732    /// Returns `None` if the span is empty (i.e., no brackets) or dummy.
733    ///
734    /// [^1]: Unless of the form `-> Ty` (see [`GenericArgsParentheses`]).
735    pub fn span(&self) -> Option<Span> {
736        let span_ext = self.span_ext()?;
737        Some(span_ext.with_lo(span_ext.lo() + BytePos(1)).with_hi(span_ext.hi() - BytePos(1)))
738    }
739
740    /// Returns span encompassing arguments and their surrounding `<>` or `()`
741    pub fn span_ext(&self) -> Option<Span> {
742        Some(self.span_ext).filter(|span| !span.is_empty())
743    }
744
745    pub fn is_empty(&self) -> bool {
746        self.args.is_empty()
747    }
748}
749
750#[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)]
751pub enum GenericArgsParentheses {
752    No,
753    /// Bounds for `feature(return_type_notation)`, like `T: Trait<method(..): Send>`,
754    /// where the args are explicitly elided with `..`
755    ReturnTypeNotation,
756    /// parenthesized function-family traits, like `T: Fn(u32) -> i32`
757    ParenSugar,
758}
759
760/// The modifiers on a trait bound.
761#[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)]
762pub struct TraitBoundModifiers {
763    pub constness: BoundConstness,
764    pub polarity: BoundPolarity,
765}
766
767impl TraitBoundModifiers {
768    pub const NONE: Self =
769        TraitBoundModifiers { constness: BoundConstness::Never, polarity: BoundPolarity::Positive };
770}
771
772#[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)]
773pub enum GenericBound<'hir> {
774    Trait(PolyTraitRef<'hir>),
775    Outlives(&'hir Lifetime),
776    Use(&'hir [PreciseCapturingArg<'hir>], Span),
777}
778
779impl GenericBound<'_> {
780    pub fn trait_ref(&self) -> Option<&TraitRef<'_>> {
781        match self {
782            GenericBound::Trait(data) => Some(&data.trait_ref),
783            _ => None,
784        }
785    }
786
787    pub fn span(&self) -> Span {
788        match self {
789            GenericBound::Trait(t, ..) => t.span,
790            GenericBound::Outlives(l) => l.ident.span,
791            GenericBound::Use(_, span) => *span,
792        }
793    }
794}
795
796pub type GenericBounds<'hir> = &'hir [GenericBound<'hir>];
797
798#[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)]
799pub enum MissingLifetimeKind {
800    /// An explicit `'_`.
801    Underscore,
802    /// An elided lifetime `&' ty`.
803    Ampersand,
804    /// An elided lifetime in brackets with written brackets.
805    Comma,
806    /// An elided lifetime with elided brackets.
807    Brackets,
808}
809
810#[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)]
811pub enum LifetimeParamKind {
812    // Indicates that the lifetime definition was explicitly declared (e.g., in
813    // `fn foo<'a>(x: &'a u8) -> &'a u8 { x }`).
814    Explicit,
815
816    // Indication that the lifetime was elided (e.g., in both cases in
817    // `fn foo(x: &u8) -> &'_ u8 { x }`).
818    Elided(MissingLifetimeKind),
819
820    // Indication that the lifetime name was somehow in error.
821    Error,
822}
823
824#[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)]
825pub enum GenericParamKind<'hir> {
826    /// A lifetime definition (e.g., `'a: 'b + 'c + 'd`).
827    Lifetime {
828        kind: LifetimeParamKind,
829    },
830    Type {
831        default: Option<&'hir Ty<'hir>>,
832        synthetic: bool,
833    },
834    Const {
835        ty: &'hir Ty<'hir>,
836        /// Optional default value for the const generic param
837        default: Option<&'hir ConstArg<'hir>>,
838    },
839}
840
841#[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)]
842pub struct GenericParam<'hir> {
843    #[stable_hash(ignore)]
844    pub hir_id: HirId,
845    pub def_id: LocalDefId,
846    pub name: ParamName,
847    pub span: Span,
848    pub pure_wrt_drop: bool,
849    pub kind: GenericParamKind<'hir>,
850    pub colon_span: Option<Span>,
851    pub source: GenericParamSource,
852}
853
854impl<'hir> GenericParam<'hir> {
855    /// Synthetic type-parameters are inserted after normal ones.
856    /// In order for normal parameters to be able to refer to synthetic ones,
857    /// scans them first.
858    pub fn is_impl_trait(&self) -> bool {
859        #[allow(non_exhaustive_omitted_patterns)] match self.kind {
    GenericParamKind::Type { synthetic: true, .. } => true,
    _ => false,
}matches!(self.kind, GenericParamKind::Type { synthetic: true, .. })
860    }
861
862    /// This can happen for `async fn`, e.g. `async fn f<'_>(&'_ self)`.
863    ///
864    /// See `lifetime_to_generic_param` in `rustc_ast_lowering` for more information.
865    pub fn is_elided_lifetime(&self) -> bool {
866        #[allow(non_exhaustive_omitted_patterns)] match self.kind {
    GenericParamKind::Lifetime { kind: LifetimeParamKind::Elided(_) } => true,
    _ => false,
}matches!(self.kind, GenericParamKind::Lifetime { kind: LifetimeParamKind::Elided(_) })
867    }
868
869    pub fn is_lifetime(&self) -> bool {
870        #[allow(non_exhaustive_omitted_patterns)] match self.kind {
    GenericParamKind::Lifetime { .. } => true,
    _ => false,
}matches!(self.kind, GenericParamKind::Lifetime { .. })
871    }
872}
873
874/// Records where the generic parameter originated from.
875///
876/// This can either be from an item's generics, in which case it's typically
877/// early-bound (but can be a late-bound lifetime in functions, for example),
878/// or from a `for<...>` binder, in which case it's late-bound (and notably,
879/// does not show up in the parent item's generics).
880#[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)]
881pub enum GenericParamSource {
882    // Early or late-bound parameters defined on an item
883    Generics,
884    // Late-bound parameters defined via a `for<...>`
885    Binder,
886}
887
888#[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)]
889pub struct GenericParamCount {
890    pub lifetimes: usize,
891    pub types: usize,
892    pub consts: usize,
893    pub infer: usize,
894}
895
896/// Represents lifetimes and type parameters attached to a declaration
897/// of a function, enum, trait, etc.
898#[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)]
899pub struct Generics<'hir> {
900    pub params: &'hir [GenericParam<'hir>],
901    pub predicates: &'hir [WherePredicate<'hir>],
902    pub has_where_clause_predicates: bool,
903    pub where_clause_span: Span,
904    pub span: Span,
905}
906
907impl<'hir> Generics<'hir> {
908    pub const fn empty() -> &'hir Generics<'hir> {
909        const NOPE: Generics<'_> = Generics {
910            params: &[],
911            predicates: &[],
912            has_where_clause_predicates: false,
913            where_clause_span: DUMMY_SP,
914            span: DUMMY_SP,
915        };
916        &NOPE
917    }
918
919    pub fn get_named(&self, name: Symbol) -> Option<&GenericParam<'hir>> {
920        self.params.iter().find(|&param| name == param.name.ident().name)
921    }
922
923    /// If there are generic parameters, return where to introduce a new one.
924    pub fn span_for_lifetime_suggestion(&self) -> Option<Span> {
925        if let Some(first) = self.params.first()
926            && self.span.contains(first.span)
927        {
928            // `fn foo<A>(t: impl Trait)`
929            //         ^ suggest `'a, ` here
930            Some(first.span.shrink_to_lo())
931        } else {
932            None
933        }
934    }
935
936    /// If there are generic parameters, return where to introduce a new one.
937    pub fn span_for_param_suggestion(&self) -> Option<Span> {
938        self.params.iter().any(|p| self.span.contains(p.span)).then(|| {
939            // `fn foo<A>(t: impl Trait)`
940            //          ^ suggest `, T: Trait` here
941            self.span.with_lo(self.span.hi() - BytePos(1)).shrink_to_lo()
942        })
943    }
944
945    /// `Span` where further predicates would be suggested, accounting for trailing commas, like
946    ///  in `fn foo<T>(t: T) where T: Foo,` so we don't suggest two trailing commas.
947    pub fn tail_span_for_predicate_suggestion(&self) -> Span {
948        let end = self.where_clause_span.shrink_to_hi();
949        if self.has_where_clause_predicates {
950            self.predicates
951                .iter()
952                .rfind(|&p| p.kind.in_where_clause())
953                .map_or(end, |p| p.span)
954                .shrink_to_hi()
955                .to(end)
956        } else {
957            end
958        }
959    }
960
961    pub fn add_where_or_trailing_comma(&self) -> &'static str {
962        if self.has_where_clause_predicates {
963            ","
964        } else if self.where_clause_span.is_empty() {
965            " where"
966        } else {
967            // No where clause predicates, but we have `where` token
968            ""
969        }
970    }
971
972    pub fn bounds_for_param(
973        &self,
974        param_def_id: LocalDefId,
975    ) -> impl Iterator<Item = &WhereBoundPredicate<'hir>> {
976        self.predicates.iter().filter_map(move |pred| match pred.kind {
977            WherePredicateKind::BoundPredicate(bp)
978                if bp.is_param_bound(param_def_id.to_def_id()) =>
979            {
980                Some(bp)
981            }
982            _ => None,
983        })
984    }
985
986    pub fn outlives_for_param(
987        &self,
988        param_def_id: LocalDefId,
989    ) -> impl Iterator<Item = &WhereRegionPredicate<'_>> {
990        self.predicates.iter().filter_map(move |pred| match pred.kind {
991            WherePredicateKind::RegionPredicate(rp) if rp.is_param_bound(param_def_id) => Some(rp),
992            _ => None,
993        })
994    }
995
996    /// Returns a suggestable empty span right after the "final" bound of the generic parameter.
997    ///
998    /// If that bound needs to be wrapped in parentheses to avoid ambiguity with
999    /// subsequent bounds, it also returns an empty span for an open parenthesis
1000    /// as the second component.
1001    ///
1002    /// E.g., adding `+ 'static` after `Fn() -> dyn Future<Output = ()>` or
1003    /// `Fn() -> &'static dyn Debug` requires parentheses:
1004    /// `Fn() -> (dyn Future<Output = ()>) + 'static` and
1005    /// `Fn() -> &'static (dyn Debug) + 'static`, respectively.
1006    pub fn bounds_span_for_suggestions(
1007        &self,
1008        param_def_id: LocalDefId,
1009    ) -> Option<(Span, Option<Span>)> {
1010        self.bounds_for_param(param_def_id).flat_map(|bp| bp.bounds.iter().rev()).find_map(
1011            |bound| {
1012                let span_for_parentheses = if let Some(trait_ref) = bound.trait_ref()
1013                    && let [.., segment] = trait_ref.path.segments
1014                    && let Some(ret_ty) = segment.args().paren_sugar_output()
1015                    && let ret_ty = ret_ty.peel_refs()
1016                    && let TyKind::TraitObject(_, tagged_ptr) = ret_ty.kind
1017                    && let TraitObjectSyntax::Dyn = tagged_ptr.tag()
1018                    && ret_ty.span.can_be_used_for_suggestions()
1019                {
1020                    Some(ret_ty.span)
1021                } else {
1022                    None
1023                };
1024
1025                span_for_parentheses.map_or_else(
1026                    || {
1027                        // We include bounds that come from a `#[derive(_)]` but point at the user's
1028                        // code, as we use this method to get a span appropriate for suggestions.
1029                        let bs = bound.span();
1030                        // We use `from_expansion` instead of `can_be_used_for_suggestions` because
1031                        // the trait bound from imperfect derives do point at the type parameter,
1032                        // but expanded to a where clause, so we want to ignore those. This is only
1033                        // true for derive intrinsics.
1034                        bs.from_expansion().not().then(|| (bs.shrink_to_hi(), None))
1035                    },
1036                    |span| Some((span.shrink_to_hi(), Some(span.shrink_to_lo()))),
1037                )
1038            },
1039        )
1040    }
1041
1042    pub fn span_for_predicate_removal(&self, pos: usize) -> Span {
1043        let predicate = &self.predicates[pos];
1044        let span = predicate.span;
1045
1046        if !predicate.kind.in_where_clause() {
1047            // <T: ?Sized, U>
1048            //   ^^^^^^^^
1049            return span;
1050        }
1051
1052        // We need to find out which comma to remove.
1053        if pos < self.predicates.len() - 1 {
1054            let next_pred = &self.predicates[pos + 1];
1055            if next_pred.kind.in_where_clause() {
1056                // where T: ?Sized, Foo: Bar,
1057                //       ^^^^^^^^^^^
1058                return span.until(next_pred.span);
1059            }
1060        }
1061
1062        if pos > 0 {
1063            let prev_pred = &self.predicates[pos - 1];
1064            if prev_pred.kind.in_where_clause() {
1065                // where Foo: Bar, T: ?Sized,
1066                //               ^^^^^^^^^^^
1067                return prev_pred.span.shrink_to_hi().to(span);
1068            }
1069        }
1070
1071        // This is the only predicate in the where clause.
1072        // where T: ?Sized
1073        // ^^^^^^^^^^^^^^^
1074        self.where_clause_span
1075    }
1076
1077    pub fn span_for_bound_removal(&self, predicate_pos: usize, bound_pos: usize) -> Span {
1078        let predicate = &self.predicates[predicate_pos];
1079        let bounds = predicate.kind.bounds();
1080
1081        if bounds.len() == 1 {
1082            return self.span_for_predicate_removal(predicate_pos);
1083        }
1084
1085        let bound_span = bounds[bound_pos].span();
1086        if bound_pos < bounds.len() - 1 {
1087            // If there's another bound after the current bound
1088            // include the following '+' e.g.:
1089            //
1090            //  `T: Foo + CurrentBound + Bar`
1091            //            ^^^^^^^^^^^^^^^
1092            bound_span.to(bounds[bound_pos + 1].span().shrink_to_lo())
1093        } else {
1094            // If the current bound is the last bound
1095            // include the preceding '+' E.g.:
1096            //
1097            //  `T: Foo + Bar + CurrentBound`
1098            //               ^^^^^^^^^^^^^^^
1099            bound_span.with_lo(bounds[bound_pos - 1].span().hi())
1100        }
1101    }
1102
1103    /// Computes the span representing the removal of a generic parameter at `param_index`.
1104    ///
1105    /// This function identifies the correct slice of source code to delete so that the
1106    /// remaining generic list remains syntactically valid (handling commas and brackets).
1107    ///
1108    /// ### Examples
1109    ///
1110    /// 1. **With a following parameter:** (Includes the trailing comma)
1111    ///    - Input: `<T, U>` (index 0)
1112    ///    - Produces span for: `T, `
1113    ///
1114    /// 2. **With a previous parameter:** (Includes the leading comma and bounds)
1115    ///    - Input: `<T: Clone, U>` (index 1)
1116    ///    - Produces span for: `, U`
1117    ///
1118    /// 3. **The only parameter:** (Includes the angle brackets)
1119    ///    - Input: `<T>` (index 0)
1120    ///    - Produces span for: `<T>`
1121    ///
1122    /// 4. **Parameter with where-clause bounds:**
1123    ///    - Input: `fn foo<T, U>() where T: Copy` (index 0)
1124    ///    - Produces span for: `T, ` (The where-clause remains for other logic to handle).
1125    pub fn span_for_param_removal(&self, param_index: usize) -> Span {
1126        if param_index >= self.params.len() {
1127            return self.span.shrink_to_hi();
1128        }
1129
1130        let is_param_explicit = |par: &&GenericParam<'_>| match par.kind {
1131            GenericParamKind::Type { .. }
1132            | GenericParamKind::Const { .. }
1133            | GenericParamKind::Lifetime { kind: LifetimeParamKind::Explicit } => true,
1134            _ => false,
1135        };
1136
1137        // Find the span of the type parameter.
1138        if let Some(next) = self.params[param_index + 1..].iter().find(is_param_explicit) {
1139            self.params[param_index].span.until(next.span)
1140        } else if let Some(prev) = self.params[..param_index].iter().rfind(is_param_explicit) {
1141            let mut prev_span = prev.span;
1142            // Consider the span of the bounds with the previous generic parameter when there is.
1143            if let Some(prev_bounds_span) = self.span_for_param_bounds(prev) {
1144                prev_span = prev_span.to(prev_bounds_span);
1145            }
1146
1147            // Consider the span of the bounds with the current generic parameter when there is.
1148            prev_span.shrink_to_hi().to(
1149                if let Some(cur_bounds_span) = self.span_for_param_bounds(&self.params[param_index])
1150                {
1151                    cur_bounds_span
1152                } else {
1153                    self.params[param_index].span
1154                },
1155            )
1156        } else {
1157            // Remove also angle brackets <> when there is just ONE generic parameter.
1158            self.span
1159        }
1160    }
1161
1162    /// Returns the span of the `WherePredicate` associated with the given `GenericParam`, if any.
1163    ///
1164    /// This looks specifically for predicates in the `where` clause that were generated
1165    /// from the parameter definition (e.g., `T` in `where T: Bound`).
1166    ///
1167    /// ### Example
1168    ///
1169    /// - Input: `param` representing `T`
1170    /// - Context: `where T: Clone + Default, U: Copy`
1171    /// - Returns: Span of `T: Clone + Default`
1172    fn span_for_param_bounds(&self, param: &GenericParam<'hir>) -> Option<Span> {
1173        self.predicates
1174            .iter()
1175            .find(|pred| {
1176                if let WherePredicateKind::BoundPredicate(WhereBoundPredicate {
1177                    origin: PredicateOrigin::GenericParam,
1178                    bounded_ty,
1179                    ..
1180                }) = pred.kind
1181                {
1182                    bounded_ty.span == param.span
1183                } else {
1184                    false
1185                }
1186            })
1187            .map(|pred| pred.span)
1188    }
1189}
1190
1191/// A single predicate in a where-clause.
1192#[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)]
1193pub struct WherePredicate<'hir> {
1194    #[stable_hash(ignore)]
1195    pub hir_id: HirId,
1196    pub span: Span,
1197    pub kind: &'hir WherePredicateKind<'hir>,
1198}
1199
1200/// The kind of a single predicate in a where-clause.
1201#[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),
        }
    }
}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>>;
        *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); }
                    }
                }
            }
        }
    };StableHash)]
1202pub enum WherePredicateKind<'hir> {
1203    /// A type bound (e.g., `for<'c> Foo: Send + Clone + 'c`).
1204    BoundPredicate(WhereBoundPredicate<'hir>),
1205    /// A lifetime predicate (e.g., `'a: 'b + 'c`).
1206    RegionPredicate(WhereRegionPredicate<'hir>),
1207}
1208
1209impl<'hir> WherePredicateKind<'hir> {
1210    pub fn in_where_clause(&self) -> bool {
1211        match self {
1212            WherePredicateKind::BoundPredicate(p) => p.origin == PredicateOrigin::WhereClause,
1213            WherePredicateKind::RegionPredicate(p) => p.in_where_clause,
1214        }
1215    }
1216
1217    pub fn bounds(&self) -> GenericBounds<'hir> {
1218        match self {
1219            WherePredicateKind::BoundPredicate(p) => p.bounds,
1220            WherePredicateKind::RegionPredicate(p) => p.bounds,
1221        }
1222    }
1223}
1224
1225#[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)]
1226pub enum PredicateOrigin {
1227    WhereClause,
1228    GenericParam,
1229    ImplTrait,
1230}
1231
1232/// A type bound (e.g., `for<'c> Foo: Send + Clone + 'c`).
1233#[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)]
1234pub struct WhereBoundPredicate<'hir> {
1235    /// Origin of the predicate.
1236    pub origin: PredicateOrigin,
1237    /// Any generics from a `for` binding.
1238    pub bound_generic_params: &'hir [GenericParam<'hir>],
1239    /// The type being bounded.
1240    pub bounded_ty: &'hir Ty<'hir>,
1241    /// Trait and lifetime bounds (e.g., `Clone + Send + 'static`).
1242    pub bounds: GenericBounds<'hir>,
1243}
1244
1245impl<'hir> WhereBoundPredicate<'hir> {
1246    /// Returns `true` if `param_def_id` matches the `bounded_ty` of this predicate.
1247    pub fn is_param_bound(&self, param_def_id: DefId) -> bool {
1248        self.bounded_ty.as_generic_param().is_some_and(|(def_id, _)| def_id == param_def_id)
1249    }
1250}
1251
1252/// A lifetime predicate (e.g., `'a: 'b + 'c`).
1253#[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)]
1254pub struct WhereRegionPredicate<'hir> {
1255    pub in_where_clause: bool,
1256    pub lifetime: &'hir Lifetime,
1257    pub bounds: GenericBounds<'hir>,
1258}
1259
1260impl<'hir> WhereRegionPredicate<'hir> {
1261    /// Returns `true` if `param_def_id` matches the `lifetime` of this predicate.
1262    fn is_param_bound(&self, param_def_id: LocalDefId) -> bool {
1263        self.lifetime.kind == LifetimeKind::Param(param_def_id)
1264    }
1265}
1266
1267/// An equality predicate (e.g., `T = int`); currently unsupported.
1268#[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)]
1269pub struct WhereEqPredicate<'hir> {
1270    pub lhs_ty: &'hir Ty<'hir>,
1271    pub rhs_ty: &'hir Ty<'hir>,
1272}
1273
1274/// HIR node coupled with its parent's id in the same HIR owner.
1275///
1276/// The parent is trash when the node is a HIR owner.
1277#[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)]
1278pub struct ParentedNode<'tcx> {
1279    pub parent: ItemLocalId,
1280    pub node: Node<'tcx>,
1281}
1282
1283/// Attributes owned by a HIR owner.
1284#[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)]
1285pub struct AttributeMap<'tcx> {
1286    pub map: SortedMap<ItemLocalId, &'tcx [Attribute]>,
1287    /// Preprocessed `#[define_opaque]` attribute.
1288    pub define_opaque: Option<&'tcx [(Span, LocalDefId)]>,
1289    // Only present when the crate hash is needed.
1290    pub opt_hash: Option<Fingerprint>,
1291}
1292
1293impl<'tcx> AttributeMap<'tcx> {
1294    pub const EMPTY: &'static AttributeMap<'static> = &AttributeMap {
1295        map: SortedMap::new(),
1296        opt_hash: Some(Fingerprint::ZERO),
1297        define_opaque: None,
1298    };
1299
1300    #[inline]
1301    pub fn get(&self, id: ItemLocalId) -> &'tcx [Attribute] {
1302        self.map.get(&id).copied().unwrap_or(&[])
1303    }
1304}
1305
1306/// Map of all HIR nodes inside the current owner.
1307/// These nodes are mapped by `ItemLocalId` alongside the index of their parent node.
1308/// The HIR tree, including bodies, is pre-hashed.
1309pub struct OwnerNodes<'tcx> {
1310    /// Pre-computed hash of the full HIR, including bodies. Used in the crate hash.
1311    /// Only present when incr. comp. is enabled.
1312    pub opt_hash: Option<Fingerprint>,
1313    /// Full HIR for the current owner.
1314    // The zeroth node's parent should never be accessed: the owner's parent is computed by the
1315    // hir_owner_parent query. It is set to `ItemLocalId::INVALID` to force an ICE if accidentally
1316    // used.
1317    pub nodes: IndexVec<ItemLocalId, ParentedNode<'tcx>>,
1318    /// Content of local bodies.
1319    pub bodies: SortedMap<ItemLocalId, &'tcx Body<'tcx>>,
1320}
1321
1322impl<'tcx> OwnerNodes<'tcx> {
1323    pub fn node(&self) -> OwnerNode<'tcx> {
1324        // Indexing must ensure it is an OwnerNode.
1325        self.nodes[ItemLocalId::ZERO].node.as_owner().unwrap()
1326    }
1327
1328    /// Return an instance of `OwnerNodes` suitable for definitions that have no corresponding AST.
1329    pub fn synthetic() -> OwnerNodes<'tcx> {
1330        OwnerNodes {
1331            // There is no reason to bother computing a hash for a synthetic body.
1332            // Just use a constant value.
1333            opt_hash: Some(Fingerprint::ZERO),
1334            nodes: IndexVec::from_elem_n(
1335                ParentedNode { parent: ItemLocalId::INVALID, node: OwnerNode::Synthetic.into() },
1336                1,
1337            ),
1338            bodies: SortedMap::new(),
1339        }
1340    }
1341}
1342
1343impl fmt::Debug for OwnerNodes<'_> {
1344    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1345        f.debug_struct("OwnerNodes")
1346            // Do not print all the pointers to all the nodes, as it would be unreadable.
1347            .field("node", &self.nodes[ItemLocalId::ZERO])
1348            .field(
1349                "parents",
1350                &fmt::from_fn(|f| {
1351                    f.debug_list()
1352                        .entries(self.nodes.iter_enumerated().map(|(id, parented_node)| {
1353                            fmt::from_fn(move |f| f.write_fmt(format_args!("({1:?}, {0:?})", parented_node.parent, id))write!(f, "({id:?}, {:?})", parented_node.parent))
1354                        }))
1355                        .finish()
1356                }),
1357            )
1358            .field("bodies", &self.bodies)
1359            .field("opt_hash", &self.opt_hash)
1360            .finish()
1361    }
1362}
1363
1364/// Full information resulting from lowering an AST node.
1365#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for OwnerInfo<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["nodes", "parenting", "attrs", "trait_map", "children",
                        "delayed_lints", "opt_hash"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.nodes, &self.parenting, &self.attrs, &self.trait_map,
                        &self.children, &self.delayed_lints, &&self.opt_hash];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "OwnerInfo",
            names, values)
    }
}Debug)]
1366pub struct OwnerInfo<'hir> {
1367    /// Contents of the HIR.
1368    pub nodes: OwnerNodes<'hir>,
1369    /// Map from each nested owner to its parent's local id.
1370    pub parenting: LocalDefIdMap<ItemLocalId>,
1371    /// Collected attributes of the HIR nodes.
1372    pub attrs: AttributeMap<'hir>,
1373    /// Map indicating what traits are in scope for places where this
1374    /// is relevant; generated by resolve.
1375    pub trait_map: ItemLocalMap<&'hir [TraitCandidate<'hir>]>,
1376    /// Owners generated as side-effect by lowering.
1377    pub children: UnordMap<LocalDefId, MaybeOwner<'hir>>,
1378
1379    /// Lints delayed during ast lowering to be emitted
1380    /// after hir has completely built
1381    ///
1382    /// WARNING: The delayed lints are not hashed as a part of the `OwnerInfo`, and therefore
1383    ///          should only be accessed in `eval_always` queries.
1384    pub delayed_lints: Steal<DelayedLints>,
1385
1386    // Only present when the crate hash is needed.
1387    pub opt_hash: Option<Fingerprint>,
1388}
1389
1390impl<'tcx> OwnerInfo<'tcx> {
1391    #[inline]
1392    pub fn node(&self) -> OwnerNode<'tcx> {
1393        self.nodes.node()
1394    }
1395}
1396
1397#[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),
        }
    }
}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); }
                    }
                }
            }
        }
    };StableHash)]
1398pub enum MaybeOwner<'tcx> {
1399    Owner(&'tcx OwnerInfo<'tcx>),
1400    NonOwner(HirId),
1401}
1402
1403impl<'tcx> MaybeOwner<'tcx> {
1404    #[inline]
1405    pub fn as_owner(self) -> Option<&'tcx OwnerInfo<'tcx>> {
1406        match self {
1407            MaybeOwner::Owner(i) => Some(i),
1408            MaybeOwner::NonOwner(_) => None,
1409        }
1410    }
1411
1412    #[inline]
1413    pub fn unwrap(self) -> &'tcx OwnerInfo<'tcx> {
1414        self.as_owner().unwrap_or_else(|| { ::core::panicking::panic_fmt(format_args!("Not a HIR owner")); }panic!("Not a HIR owner"))
1415    }
1416}
1417
1418#[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)]
1419pub struct Closure<'hir> {
1420    pub def_id: LocalDefId,
1421    pub binder: ClosureBinder,
1422    pub constness: Constness,
1423    pub capture_clause: CaptureBy,
1424    pub bound_generic_params: &'hir [GenericParam<'hir>],
1425    pub fn_decl: &'hir FnDecl<'hir>,
1426    pub body: BodyId,
1427    /// The span of the declaration block: 'move |...| -> ...'
1428    pub fn_decl_span: Span,
1429    /// The span of the argument block `|...|`
1430    pub fn_arg_span: Option<Span>,
1431    pub kind: ClosureKind,
1432    pub explicit_captures: &'hir [ExplicitCapture],
1433}
1434
1435/// A HIR local that must be captured by value even if ordinary closure capture
1436/// analysis would infer a weaker capture kind from its uses in the body.
1437#[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)]
1438pub struct ExplicitCapture {
1439    pub var_hir_id: HirId,
1440}
1441
1442#[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)]
1443pub enum ClosureKind {
1444    /// This is a plain closure expression.
1445    Closure,
1446    /// This is a coroutine expression -- i.e. a closure expression in which
1447    /// we've found a `yield`. These can arise either from "plain" coroutine
1448    ///  usage (e.g. `let x = || { yield (); }`) or from a desugared expression
1449    /// (e.g. `async` and `gen` blocks).
1450    Coroutine(CoroutineKind),
1451    /// This is a coroutine-closure, which is a special sugared closure that
1452    /// returns one of the sugared coroutine (`async`/`gen`/`async gen`). It
1453    /// additionally allows capturing the coroutine's upvars by ref, and therefore
1454    /// needs to be specially treated during analysis and borrowck.
1455    CoroutineClosure(CoroutineDesugaring),
1456}
1457
1458/// A block of statements `{ .. }`, which may have a label (in this case the
1459/// `targeted_by_break` field will be `true`) and may be `unsafe` by means of
1460/// the `rules` being anything but `DefaultBlock`.
1461#[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)]
1462pub struct Block<'hir> {
1463    /// Statements in a block.
1464    pub stmts: &'hir [Stmt<'hir>],
1465    /// An expression at the end of the block
1466    /// without a semicolon, if any.
1467    pub expr: Option<&'hir Expr<'hir>>,
1468    #[stable_hash(ignore)]
1469    pub hir_id: HirId,
1470    /// Distinguishes between `unsafe { ... }` and `{ ... }`.
1471    pub rules: BlockCheckMode,
1472    /// The span includes the curly braces `{` and `}` around the block.
1473    pub span: Span,
1474    /// If true, then there may exist `break 'a` values that aim to
1475    /// break out of this block early.
1476    /// Used by `'label: {}` blocks and by `try {}` blocks.
1477    pub targeted_by_break: bool,
1478}
1479
1480impl<'hir> Block<'hir> {
1481    pub fn innermost_block(&self) -> &Block<'hir> {
1482        let mut block = self;
1483        while let Some(Expr { kind: ExprKind::Block(inner_block, _), .. }) = block.expr {
1484            block = inner_block;
1485        }
1486        block
1487    }
1488}
1489
1490#[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)]
1491pub struct TyFieldPath {
1492    pub variant: Option<Ident>,
1493    pub field: Ident,
1494}
1495
1496#[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)]
1497pub struct TyPat<'hir> {
1498    #[stable_hash(ignore)]
1499    pub hir_id: HirId,
1500    pub kind: TyPatKind<'hir>,
1501    pub span: Span,
1502}
1503
1504#[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)]
1505pub struct Pat<'hir> {
1506    #[stable_hash(ignore)]
1507    pub hir_id: HirId,
1508    pub kind: PatKind<'hir>,
1509    pub span: Span,
1510    /// Whether to use default binding modes.
1511    /// At present, this is false only for destructuring assignment.
1512    pub default_binding_modes: bool,
1513}
1514
1515impl<'hir> Pat<'hir> {
1516    fn walk_short_(&self, it: &mut impl FnMut(&Pat<'hir>) -> bool) -> bool {
1517        if !it(self) {
1518            return false;
1519        }
1520
1521        use PatKind::*;
1522        match self.kind {
1523            Missing => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
1524            Wild | Never | Expr(_) | Range(..) | Binding(.., None) | Err(_) => true,
1525            Box(s) | Deref(s) | Ref(s, _, _) | Binding(.., Some(s)) | Guard(s, _) => {
1526                s.walk_short_(it)
1527            }
1528            Struct(_, fields, _) => fields.iter().all(|field| field.pat.walk_short_(it)),
1529            TupleStruct(_, s, _) | Tuple(s, _) | Or(s) => s.iter().all(|p| p.walk_short_(it)),
1530            Slice(before, slice, after) => {
1531                before.iter().chain(slice).chain(after.iter()).all(|p| p.walk_short_(it))
1532            }
1533        }
1534    }
1535
1536    /// Walk the pattern in left-to-right order,
1537    /// short circuiting (with `.all(..)`) if `false` is returned.
1538    ///
1539    /// Note that when visiting e.g. `Tuple(ps)`,
1540    /// if visiting `ps[0]` returns `false`,
1541    /// then `ps[1]` will not be visited.
1542    pub fn walk_short(&self, mut it: impl FnMut(&Pat<'hir>) -> bool) -> bool {
1543        self.walk_short_(&mut it)
1544    }
1545
1546    fn walk_(&self, it: &mut impl FnMut(&Pat<'hir>) -> bool) {
1547        if !it(self) {
1548            return;
1549        }
1550
1551        use PatKind::*;
1552        match self.kind {
1553            Missing | Wild | Never | Expr(_) | Range(..) | Binding(.., None) | Err(_) => {}
1554            Box(s) | Deref(s) | Ref(s, _, _) | Binding(.., Some(s)) | Guard(s, _) => s.walk_(it),
1555            Struct(_, fields, _) => fields.iter().for_each(|field| field.pat.walk_(it)),
1556            TupleStruct(_, s, _) | Tuple(s, _) | Or(s) => s.iter().for_each(|p| p.walk_(it)),
1557            Slice(before, slice, after) => {
1558                before.iter().chain(slice).chain(after.iter()).for_each(|p| p.walk_(it))
1559            }
1560        }
1561    }
1562
1563    /// Walk the pattern in left-to-right order.
1564    ///
1565    /// If `it(pat)` returns `false`, the children are not visited.
1566    pub fn walk(&self, mut it: impl FnMut(&Pat<'hir>) -> bool) {
1567        self.walk_(&mut it)
1568    }
1569
1570    /// Walk the pattern in left-to-right order.
1571    ///
1572    /// If you always want to recurse, prefer this method over `walk`.
1573    pub fn walk_always(&self, mut it: impl FnMut(&Pat<'_>)) {
1574        self.walk(|p| {
1575            it(p);
1576            true
1577        })
1578    }
1579
1580    /// Whether this a never pattern.
1581    pub fn is_never_pattern(&self) -> bool {
1582        let mut is_never_pattern = false;
1583        self.walk(|pat| match &pat.kind {
1584            PatKind::Never => {
1585                is_never_pattern = true;
1586                false
1587            }
1588            PatKind::Or(s) => {
1589                is_never_pattern = s.iter().all(|p| p.is_never_pattern());
1590                false
1591            }
1592            _ => true,
1593        });
1594        is_never_pattern
1595    }
1596
1597    /// Whether this pattern constitutes a read of value of the scrutinee that
1598    /// it is matching against. This is used to determine whether we should
1599    /// perform `NeverToAny` coercions.
1600    ///
1601    /// See [`expr_guaranteed_to_constitute_read_for_never`][m] for the nuances of
1602    /// what happens when this returns true.
1603    ///
1604    /// [m]: ../../rustc_middle/ty/struct.TyCtxt.html#method.expr_guaranteed_to_constitute_read_for_never
1605    pub fn is_guaranteed_to_constitute_read_for_never(&self) -> bool {
1606        match self.kind {
1607            // Does not constitute a read.
1608            PatKind::Wild => false,
1609
1610            // The guard cannot affect if we make a read or not (it runs after the inner pattern
1611            // has matched), therefore it's irrelevant.
1612            PatKind::Guard(pat, _) => pat.is_guaranteed_to_constitute_read_for_never(),
1613
1614            // This is unnecessarily restrictive when the pattern that doesn't
1615            // constitute a read is unreachable.
1616            //
1617            // For example `match *never_ptr { value => {}, _ => {} }` or
1618            // `match *never_ptr { _ if false => {}, value => {} }`.
1619            //
1620            // It is however fine to be restrictive here; only returning `true`
1621            // can lead to unsoundness.
1622            PatKind::Or(subpats) => {
1623                subpats.iter().all(|pat| pat.is_guaranteed_to_constitute_read_for_never())
1624            }
1625
1626            // Does constitute a read, since it is equivalent to a discriminant read.
1627            PatKind::Never => true,
1628
1629            // All of these constitute a read, or match on something that isn't `!`,
1630            // which would require a `NeverToAny` coercion.
1631            PatKind::Missing
1632            | PatKind::Binding(_, _, _, _)
1633            | PatKind::Struct(_, _, _)
1634            | PatKind::TupleStruct(_, _, _)
1635            | PatKind::Tuple(_, _)
1636            | PatKind::Box(_)
1637            | PatKind::Ref(_, _, _)
1638            | PatKind::Deref(_)
1639            | PatKind::Expr(_)
1640            | PatKind::Range(_, _, _)
1641            | PatKind::Slice(_, _, _)
1642            | PatKind::Err(_) => true,
1643        }
1644    }
1645}
1646
1647/// A single field in a struct pattern.
1648///
1649/// Patterns like the fields of Foo `{ x, ref y, ref mut z }`
1650/// are treated the same as` x: x, y: ref y, z: ref mut z`,
1651/// except `is_shorthand` is true.
1652#[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)]
1653pub struct PatField<'hir> {
1654    #[stable_hash(ignore)]
1655    pub hir_id: HirId,
1656    /// The identifier for the field.
1657    pub ident: Ident,
1658    /// The pattern the field is destructured to.
1659    pub pat: &'hir Pat<'hir>,
1660    pub is_shorthand: bool,
1661    pub span: Span,
1662}
1663
1664#[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)]
1665pub enum RangeEnd {
1666    Included,
1667    Excluded,
1668}
1669
1670impl fmt::Display for RangeEnd {
1671    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1672        f.write_str(match self {
1673            RangeEnd::Included => "..=",
1674            RangeEnd::Excluded => "..",
1675        })
1676    }
1677}
1678
1679// Equivalent to `Option<usize>`. That type takes up 16 bytes on 64-bit, but
1680// this type only takes up 4 bytes, at the cost of being restricted to a
1681// maximum value of `u32::MAX - 1`. In practice, this is more than enough.
1682#[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)]
1683pub struct DotDotPos(u32);
1684
1685impl DotDotPos {
1686    /// Panics if n >= u32::MAX.
1687    pub fn new(n: Option<usize>) -> Self {
1688        match n {
1689            Some(n) => {
1690                if !(n < u32::MAX as usize) {
    ::core::panicking::panic("assertion failed: n < u32::MAX as usize")
};assert!(n < u32::MAX as usize);
1691                Self(n as u32)
1692            }
1693            None => Self(u32::MAX),
1694        }
1695    }
1696
1697    pub fn as_opt_usize(&self) -> Option<usize> {
1698        if self.0 == u32::MAX { None } else { Some(self.0 as usize) }
1699    }
1700}
1701
1702impl fmt::Debug for DotDotPos {
1703    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1704        self.as_opt_usize().fmt(f)
1705    }
1706}
1707
1708#[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)]
1709pub struct PatExpr<'hir> {
1710    #[stable_hash(ignore)]
1711    pub hir_id: HirId,
1712    pub span: Span,
1713    pub kind: PatExprKind<'hir>,
1714}
1715
1716#[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)]
1717pub enum PatExprKind<'hir> {
1718    Lit {
1719        lit: Lit,
1720        negated: bool,
1721    },
1722    /// A path pattern for a unit struct/variant or a (maybe-associated) constant.
1723    Path(QPath<'hir>),
1724}
1725
1726#[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)]
1727pub enum TyPatKind<'hir> {
1728    /// A range pattern (e.g., `1..=2` or `1..2`).
1729    Range(&'hir ConstArg<'hir>, &'hir ConstArg<'hir>),
1730
1731    /// A pattern that excludes null pointers
1732    NotNull,
1733
1734    /// A list of patterns where only one needs to be satisfied
1735    Or(&'hir [TyPat<'hir>]),
1736
1737    /// A placeholder for a pattern that wasn't well formed in some way.
1738    Err(ErrorGuaranteed),
1739}
1740
1741#[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)]
1742pub enum PatKind<'hir> {
1743    /// A missing pattern, e.g. for an anonymous param in a bare fn like `fn f(u32)`.
1744    Missing,
1745
1746    /// Represents a wildcard pattern (i.e., `_`).
1747    Wild,
1748
1749    /// A fresh binding `ref mut binding @ OPT_SUBPATTERN`.
1750    /// The `HirId` is the canonical ID for the variable being bound,
1751    /// (e.g., in `Ok(x) | Err(x)`, both `x` use the same canonical ID),
1752    /// which is the pattern ID of the first `x`.
1753    ///
1754    /// The `BindingMode` is what's provided by the user, before match
1755    /// ergonomics are applied. For the binding mode actually in use,
1756    /// see [`TypeckResults::extract_binding_mode`].
1757    ///
1758    /// [`TypeckResults::extract_binding_mode`]: ../../rustc_middle/ty/struct.TypeckResults.html#method.extract_binding_mode
1759    Binding(BindingMode, HirId, Ident, Option<&'hir Pat<'hir>>),
1760
1761    /// A struct or struct variant pattern (e.g., `Variant {x, y, ..}`).
1762    /// The `Option` contains the span of a possible `..`.
1763    Struct(QPath<'hir>, &'hir [PatField<'hir>], Option<Span>),
1764
1765    /// A tuple struct/variant pattern `Variant(x, y, .., z)`.
1766    /// If the `..` pattern fragment is present, then `DotDotPos` denotes its position.
1767    /// `0 <= position <= subpats.len()`
1768    TupleStruct(QPath<'hir>, &'hir [Pat<'hir>], DotDotPos),
1769
1770    /// An or-pattern `A | B | C`.
1771    /// Invariant: `pats.len() >= 2`.
1772    Or(&'hir [Pat<'hir>]),
1773
1774    /// A never pattern `!`.
1775    Never,
1776
1777    /// A tuple pattern (e.g., `(a, b)`).
1778    /// If the `..` pattern fragment is present, then `DotDotPos` denotes its position.
1779    /// `0 <= position <= subpats.len()`
1780    Tuple(&'hir [Pat<'hir>], DotDotPos),
1781
1782    /// A `box` pattern.
1783    Box(&'hir Pat<'hir>),
1784
1785    /// A `deref` pattern (currently `deref!()` macro-based syntax).
1786    Deref(&'hir Pat<'hir>),
1787
1788    /// A reference pattern (e.g., `&mut (a, b)`).
1789    Ref(&'hir Pat<'hir>, Pinnedness, Mutability),
1790
1791    /// A literal, const block or path.
1792    Expr(&'hir PatExpr<'hir>),
1793
1794    /// A guard pattern (e.g., `x if guard(x)`).
1795    Guard(&'hir Pat<'hir>, &'hir Expr<'hir>),
1796
1797    /// A range pattern (e.g., `1..=2` or `1..2`).
1798    Range(Option<&'hir PatExpr<'hir>>, Option<&'hir PatExpr<'hir>>, RangeEnd),
1799
1800    /// A slice pattern, `[before_0, ..., before_n, (slice, after_0, ..., after_n)?]`.
1801    ///
1802    /// Here, `slice` is lowered from the syntax `($binding_mode $ident @)? ..`.
1803    /// If `slice` exists, then `after` can be non-empty.
1804    ///
1805    /// The representation for e.g., `[a, b, .., c, d]` is:
1806    /// ```ignore (illustrative)
1807    /// PatKind::Slice([Binding(a), Binding(b)], Some(Wild), [Binding(c), Binding(d)])
1808    /// ```
1809    Slice(&'hir [Pat<'hir>], Option<&'hir Pat<'hir>>, &'hir [Pat<'hir>]),
1810
1811    /// A placeholder for a pattern that wasn't well formed in some way.
1812    Err(ErrorGuaranteed),
1813}
1814
1815/// A statement.
1816#[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)]
1817pub struct Stmt<'hir> {
1818    #[stable_hash(ignore)]
1819    pub hir_id: HirId,
1820    pub kind: StmtKind<'hir>,
1821    pub span: Span,
1822}
1823
1824/// The contents of a statement.
1825#[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)]
1826pub enum StmtKind<'hir> {
1827    /// A local (`let`) binding.
1828    Let(&'hir LetStmt<'hir>),
1829
1830    /// An item binding.
1831    Item(ItemId),
1832
1833    /// An expression without a trailing semi-colon (must have unit type).
1834    Expr(&'hir Expr<'hir>),
1835
1836    /// An expression with a trailing semi-colon (may have any type).
1837    Semi(&'hir Expr<'hir>),
1838}
1839
1840/// Represents a `let` statement (i.e., `let <pat>:<ty> = <init>;`).
1841#[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)]
1842pub struct LetStmt<'hir> {
1843    /// Span of `super` in `super let`.
1844    pub super_: Option<Span>,
1845    pub pat: &'hir Pat<'hir>,
1846    /// Type annotation, if any (otherwise the type will be inferred).
1847    pub ty: Option<&'hir Ty<'hir>>,
1848    /// Initializer expression to set the value, if any.
1849    pub init: Option<&'hir Expr<'hir>>,
1850    /// Else block for a `let...else` binding.
1851    pub els: Option<&'hir Block<'hir>>,
1852    #[stable_hash(ignore)]
1853    pub hir_id: HirId,
1854    pub span: Span,
1855    /// Can be `ForLoopDesugar` if the `let` statement is part of a `for` loop
1856    /// desugaring, or `AssignDesugar` if it is the result of a complex
1857    /// assignment desugaring. Otherwise will be `Normal`.
1858    pub source: LocalSource,
1859}
1860
1861/// Represents a single arm of a `match` expression, e.g.
1862/// `<pat> (if <guard>) => <body>`.
1863#[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)]
1864pub struct Arm<'hir> {
1865    #[stable_hash(ignore)]
1866    pub hir_id: HirId,
1867    pub span: Span,
1868    /// If this pattern and the optional guard matches, then `body` is evaluated.
1869    pub pat: &'hir Pat<'hir>,
1870    /// Optional guard clause.
1871    pub guard: Option<&'hir Expr<'hir>>,
1872    /// The expression the arm evaluates to if this arm matches.
1873    pub body: &'hir Expr<'hir>,
1874}
1875
1876/// Represents a `let <pat>[: <ty>] = <expr>` expression (not a [`LetStmt`]), occurring in an `if-let`
1877/// or `let-else`, evaluating to a boolean. Typically the pattern is refutable.
1878///
1879/// In an `if let`, imagine it as `if (let <pat> = <expr>) { ... }`; in a let-else, it is part of
1880/// the desugaring to if-let. Only let-else supports the type annotation at present.
1881#[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)]
1882pub struct LetExpr<'hir> {
1883    pub span: Span,
1884    pub pat: &'hir Pat<'hir>,
1885    pub ty: Option<&'hir Ty<'hir>>,
1886    pub init: &'hir Expr<'hir>,
1887    /// `Recovered::Yes` when this let expressions is not in a syntactically valid location.
1888    /// Used to prevent building MIR in such situations.
1889    pub recovered: ast::Recovered,
1890}
1891
1892#[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)]
1893pub struct ExprField<'hir> {
1894    #[stable_hash(ignore)]
1895    pub hir_id: HirId,
1896    pub ident: Ident,
1897    pub expr: &'hir Expr<'hir>,
1898    pub span: Span,
1899    pub is_shorthand: bool,
1900}
1901
1902#[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)]
1903pub enum BlockCheckMode {
1904    DefaultBlock,
1905    UnsafeBlock(UnsafeSource),
1906}
1907
1908#[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)]
1909pub enum UnsafeSource {
1910    CompilerGenerated,
1911    UserProvided,
1912}
1913
1914#[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)]
1915pub struct BodyId {
1916    pub hir_id: HirId,
1917}
1918
1919/// The body of a function, closure, or constant value. In the case of
1920/// a function, the body contains not only the function body itself
1921/// (which is an expression), but also the argument patterns, since
1922/// those are something that the caller doesn't really care about.
1923///
1924/// # Examples
1925///
1926/// ```
1927/// fn foo((x, y): (u32, u32)) -> u32 {
1928///     x + y
1929/// }
1930/// ```
1931///
1932/// Here, the `Body` associated with `foo()` would contain:
1933///
1934/// - an `params` array containing the `(x, y)` pattern
1935/// - a `value` containing the `x + y` expression (maybe wrapped in a block)
1936/// - `coroutine_kind` would be `None`
1937///
1938/// All bodies have an **owner**, which can be accessed via the HIR
1939/// map using `body_owner_def_id()`.
1940#[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)]
1941pub struct Body<'hir> {
1942    pub params: &'hir [Param<'hir>],
1943    pub value: &'hir Expr<'hir>,
1944}
1945
1946impl<'hir> Body<'hir> {
1947    pub fn id(&self) -> BodyId {
1948        BodyId { hir_id: self.value.hir_id }
1949    }
1950}
1951
1952/// The type of source expression that caused this coroutine to be created.
1953#[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)]
1954pub enum CoroutineKind {
1955    /// A coroutine that comes from a desugaring.
1956    Desugared(CoroutineDesugaring, CoroutineSource),
1957
1958    /// A coroutine literal created via a `yield` inside a closure.
1959    Coroutine(Movability),
1960}
1961
1962impl CoroutineKind {
1963    pub fn movability(self) -> Movability {
1964        match self {
1965            CoroutineKind::Desugared(CoroutineDesugaring::Async, _)
1966            | CoroutineKind::Desugared(CoroutineDesugaring::AsyncGen, _) => Movability::Static,
1967            CoroutineKind::Desugared(CoroutineDesugaring::Gen, _) => Movability::Movable,
1968            CoroutineKind::Coroutine(mov) => mov,
1969        }
1970    }
1971
1972    pub fn is_fn_like(self) -> bool {
1973        #[allow(non_exhaustive_omitted_patterns)] match self {
    CoroutineKind::Desugared(_, CoroutineSource::Fn) => true,
    _ => false,
}matches!(self, CoroutineKind::Desugared(_, CoroutineSource::Fn))
1974    }
1975
1976    pub fn is_async_desugaring(self) -> bool {
1977        #[allow(non_exhaustive_omitted_patterns)] match self {
    CoroutineKind::Desugared(CoroutineDesugaring::Async |
        CoroutineDesugaring::AsyncGen, _) => true,
    _ => false,
}matches!(
1978            self,
1979            CoroutineKind::Desugared(CoroutineDesugaring::Async | CoroutineDesugaring::AsyncGen, _)
1980        )
1981    }
1982
1983    pub fn to_plural_string(&self) -> String {
1984        match self {
1985            CoroutineKind::Desugared(d, CoroutineSource::Fn) => ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0:#}fn bodies", d))
    })format!("{d:#}fn bodies"),
1986            CoroutineKind::Desugared(d, CoroutineSource::Block) => ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0:#}blocks", d))
    })format!("{d:#}blocks"),
1987            CoroutineKind::Desugared(d, CoroutineSource::Closure) => ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0:#}closure bodies", d))
    })format!("{d:#}closure bodies"),
1988            CoroutineKind::Coroutine(_) => "coroutines".to_string(),
1989        }
1990    }
1991}
1992
1993impl fmt::Display for CoroutineKind {
1994    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1995        match self {
1996            CoroutineKind::Desugared(d, k) => {
1997                d.fmt(f)?;
1998                k.fmt(f)
1999            }
2000            CoroutineKind::Coroutine(_) => f.write_str("coroutine"),
2001        }
2002    }
2003}
2004
2005/// In the case of a coroutine created as part of an async/gen construct,
2006/// which kind of async/gen construct caused it to be created?
2007///
2008/// This helps error messages but is also used to drive coercions in
2009/// type-checking (see #60424).
2010#[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)]
2011pub enum CoroutineSource {
2012    /// An explicit `async`/`gen` block written by the user.
2013    Block,
2014
2015    /// An explicit `async`/`gen` closure written by the user.
2016    Closure,
2017
2018    /// The `async`/`gen` block generated as the body of an async/gen function.
2019    Fn,
2020}
2021
2022impl fmt::Display for CoroutineSource {
2023    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2024        match self {
2025            CoroutineSource::Block => "block",
2026            CoroutineSource::Closure => "closure body",
2027            CoroutineSource::Fn => "fn body",
2028        }
2029        .fmt(f)
2030    }
2031}
2032
2033#[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)]
2034pub enum CoroutineDesugaring {
2035    /// An explicit `async` block or the body of an `async` function.
2036    Async,
2037
2038    /// An explicit `gen` block or the body of a `gen` function.
2039    Gen,
2040
2041    /// An explicit `async gen` block or the body of an `async gen` function,
2042    /// which is able to both `yield` and `.await`.
2043    AsyncGen,
2044}
2045
2046impl fmt::Display for CoroutineDesugaring {
2047    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2048        match self {
2049            CoroutineDesugaring::Async => {
2050                if f.alternate() {
2051                    f.write_str("`async` ")?;
2052                } else {
2053                    f.write_str("async ")?
2054                }
2055            }
2056            CoroutineDesugaring::Gen => {
2057                if f.alternate() {
2058                    f.write_str("`gen` ")?;
2059                } else {
2060                    f.write_str("gen ")?
2061                }
2062            }
2063            CoroutineDesugaring::AsyncGen => {
2064                if f.alternate() {
2065                    f.write_str("`async gen` ")?;
2066                } else {
2067                    f.write_str("async gen ")?
2068                }
2069            }
2070        }
2071
2072        Ok(())
2073    }
2074}
2075
2076#[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)]
2077pub enum BodyOwnerKind {
2078    /// Functions and methods.
2079    Fn,
2080
2081    /// Closures
2082    Closure,
2083
2084    /// Constants and associated constants, also including inline constants.
2085    Const { inline: bool },
2086
2087    /// Initializer of a `static` item.
2088    Static(Mutability),
2089
2090    /// Fake body for a global asm to store its const-like value types.
2091    GlobalAsm,
2092}
2093
2094impl BodyOwnerKind {
2095    pub fn is_fn_or_closure(self) -> bool {
2096        match self {
2097            BodyOwnerKind::Fn | BodyOwnerKind::Closure => true,
2098            BodyOwnerKind::Const { .. } | BodyOwnerKind::Static(_) | BodyOwnerKind::GlobalAsm => {
2099                false
2100            }
2101        }
2102    }
2103}
2104
2105/// The kind of an item that requires const-checking.
2106#[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 { allow_const_fn_promotion: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Const",
                    "allow_const_fn_promotion", &__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 { allow_const_fn_promotion: __self_0 },
                    ConstContext::Const { allow_const_fn_promotion: __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)]
2107pub enum ConstContext {
2108    /// A `const fn`.
2109    ConstFn,
2110
2111    /// A `static` or `static mut`.
2112    Static(Mutability),
2113
2114    /// A `const`, associated `const`, or other const context.
2115    ///
2116    /// Other contexts include:
2117    /// - Array length expressions
2118    /// - Enum discriminants
2119    /// - Const generics
2120    Const {
2121        /// For backwards compatibility `const` items allow
2122        /// calls to `const fn` to get promoted.
2123        /// We forbid that in comptime fns and inline consts.
2124        allow_const_fn_promotion: bool,
2125    },
2126}
2127
2128impl ConstContext {
2129    /// A description of this const context that can appear between backticks in an error message.
2130    ///
2131    /// E.g. `const` or `static mut`.
2132    pub fn keyword_name(self) -> &'static str {
2133        match self {
2134            Self::Const { .. } => "const",
2135            Self::Static(Mutability::Not) => "static",
2136            Self::Static(Mutability::Mut) => "static mut",
2137            Self::ConstFn => "const fn",
2138        }
2139    }
2140}
2141
2142/// A colloquial, trivially pluralizable description of this const context for use in error
2143/// messages.
2144impl fmt::Display for ConstContext {
2145    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2146        match *self {
2147            Self::Const { .. } => f.write_fmt(format_args!("constant"))write!(f, "constant"),
2148            Self::Static(_) => f.write_fmt(format_args!("static"))write!(f, "static"),
2149            Self::ConstFn => f.write_fmt(format_args!("constant function"))write!(f, "constant function"),
2150        }
2151    }
2152}
2153
2154impl IntoDiagArg for ConstContext {
2155    fn into_diag_arg(self, _: &mut Option<std::path::PathBuf>) -> DiagArgValue {
2156        DiagArgValue::Str(Cow::Borrowed(match self {
2157            ConstContext::ConstFn => "constant function",
2158            ConstContext::Static(_) => "static",
2159            ConstContext::Const { .. } => "constant",
2160        }))
2161    }
2162}
2163
2164/// A literal.
2165pub type Lit = Spanned<LitKind>;
2166
2167/// A constant (expression) that's not an item or associated item,
2168/// but needs its own `DefId` for type-checking, const-eval, etc.
2169/// These are usually found nested inside types (e.g., array lengths)
2170/// or expressions (e.g., repeat counts), and also used to define
2171/// explicit discriminant values for enum variants.
2172///
2173/// You can check if this anon const is a default in a const param
2174/// `const N: usize = { ... }` with `tcx.hir_opt_const_param_default_param_def_id(..)`
2175#[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)]
2176pub struct AnonConst {
2177    #[stable_hash(ignore)]
2178    pub hir_id: HirId,
2179    pub def_id: LocalDefId,
2180    pub body: BodyId,
2181    pub span: Span,
2182}
2183
2184/// An inline constant expression `const { something }`.
2185#[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)]
2186pub struct ConstBlock {
2187    #[stable_hash(ignore)]
2188    pub hir_id: HirId,
2189    pub def_id: LocalDefId,
2190    pub body: BodyId,
2191}
2192
2193/// An expression.
2194///
2195/// For more details, see the [rust lang reference].
2196/// Note that the reference does not document nightly-only features.
2197/// There may be also slight differences in the names and representation of AST nodes between
2198/// the compiler and the reference.
2199///
2200/// [rust lang reference]: https://doc.rust-lang.org/reference/expressions.html
2201#[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)]
2202pub struct Expr<'hir> {
2203    #[stable_hash(ignore)]
2204    pub hir_id: HirId,
2205    pub kind: ExprKind<'hir>,
2206    pub span: Span,
2207}
2208
2209impl Expr<'_> {
2210    pub fn precedence(&self, has_attr: &dyn Fn(HirId) -> bool) -> ExprPrecedence {
2211        let prefix_attrs_precedence = || -> ExprPrecedence {
2212            if has_attr(self.hir_id) { ExprPrecedence::Prefix } else { ExprPrecedence::Unambiguous }
2213        };
2214
2215        match &self.kind {
2216            ExprKind::Closure(closure) => match closure.fn_decl.output {
2217                FnRetTy::DefaultReturn(_) => ExprPrecedence::Jump,
2218                FnRetTy::Return(_) => prefix_attrs_precedence(),
2219            },
2220
2221            ExprKind::Break(..)
2222            | ExprKind::Ret(..)
2223            | ExprKind::Yield(..)
2224            | ExprKind::Become(..) => ExprPrecedence::Jump,
2225
2226            // Binop-like expr kinds, handled by `AssocOp`.
2227            ExprKind::Binary(op, ..) => op.node.precedence(),
2228            ExprKind::Cast(..) => ExprPrecedence::Cast,
2229
2230            ExprKind::Assign(..) | ExprKind::AssignOp(..) => ExprPrecedence::Assign,
2231
2232            // Unary, prefix
2233            ExprKind::AddrOf(..) => ExprPrecedence::Prefix,
2234
2235            // Here `let pats = expr` has `let pats =` as a "unary" prefix of `expr`.
2236            // However, this is not exactly right. When `let _ = a` is the LHS of a binop we
2237            // need parens sometimes. E.g. we can print `(let _ = a) && b` as `let _ = a && b`
2238            // but we need to print `(let _ = a) < b` as-is with parens.
2239            ExprKind::Let(..) | ExprKind::Unary(..) => ExprPrecedence::Prefix,
2240
2241            // Need parens if and only if there are prefix attributes.
2242            ExprKind::Array(_)
2243            | ExprKind::Block(..)
2244            | ExprKind::Call(..)
2245            | ExprKind::ConstBlock(_)
2246            | ExprKind::Continue(..)
2247            | ExprKind::Field(..)
2248            | ExprKind::If(..)
2249            | ExprKind::Index(..)
2250            | ExprKind::InlineAsm(..)
2251            | ExprKind::Lit(_)
2252            | ExprKind::Loop(..)
2253            | ExprKind::Match(..)
2254            | ExprKind::MethodCall(..)
2255            | ExprKind::OffsetOf(..)
2256            | ExprKind::Path(..)
2257            | ExprKind::Repeat(..)
2258            | ExprKind::Struct(..)
2259            | ExprKind::Tup(_)
2260            | ExprKind::Type(..)
2261            | ExprKind::UnsafeBinderCast(..)
2262            | ExprKind::Use(..)
2263            | ExprKind::Err(_) => prefix_attrs_precedence(),
2264
2265            ExprKind::DropTemps(expr, ..) => expr.precedence(has_attr),
2266        }
2267    }
2268
2269    /// Whether this looks like a place expr, without checking for deref
2270    /// adjustments.
2271    /// This will return `true` in some potentially surprising cases such as
2272    /// `CONSTANT.field`.
2273    pub fn is_syntactic_place_expr(&self) -> bool {
2274        self.is_place_expr(|_| true)
2275    }
2276
2277    /// Whether this is a place expression.
2278    ///
2279    /// `allow_projections_from` should return `true` if indexing a field or index expression based
2280    /// on the given expression should be considered a place expression.
2281    pub fn is_place_expr(&self, mut allow_projections_from: impl FnMut(&Self) -> bool) -> bool {
2282        match self.kind {
2283            ExprKind::Path(QPath::Resolved(_, ref path)) => {
2284                #[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)
2285            }
2286
2287            // Type ascription inherits its place expression kind from its
2288            // operand. See:
2289            // https://github.com/rust-lang/rfcs/blob/master/text/0803-type-ascription.md#type-ascription-and-temporaries
2290            ExprKind::Type(ref e, _) => e.is_place_expr(allow_projections_from),
2291
2292            // Unsafe binder cast preserves place-ness of the sub-expression.
2293            ExprKind::UnsafeBinderCast(_, e, _) => e.is_place_expr(allow_projections_from),
2294
2295            ExprKind::Unary(UnOp::Deref, _) => true,
2296
2297            ExprKind::Field(ref base, _) | ExprKind::Index(ref base, _, _) => {
2298                allow_projections_from(base) || base.is_place_expr(allow_projections_from)
2299            }
2300
2301            // Suppress errors for bad expressions.
2302            ExprKind::Err(_guar)
2303            | ExprKind::Let(&LetExpr { recovered: ast::Recovered::Yes(_guar), .. }) => true,
2304
2305            // Partially qualified paths in expressions can only legally
2306            // refer to associated items which are always rvalues.
2307            ExprKind::Path(QPath::TypeRelative(..))
2308            | ExprKind::Call(..)
2309            | ExprKind::MethodCall(..)
2310            | ExprKind::Use(..)
2311            | ExprKind::Struct(..)
2312            | ExprKind::Tup(..)
2313            | ExprKind::If(..)
2314            | ExprKind::Match(..)
2315            | ExprKind::Closure { .. }
2316            | ExprKind::Block(..)
2317            | ExprKind::Repeat(..)
2318            | ExprKind::Array(..)
2319            | ExprKind::Break(..)
2320            | ExprKind::Continue(..)
2321            | ExprKind::Ret(..)
2322            | ExprKind::Become(..)
2323            | ExprKind::Let(..)
2324            | ExprKind::Loop(..)
2325            | ExprKind::Assign(..)
2326            | ExprKind::InlineAsm(..)
2327            | ExprKind::OffsetOf(..)
2328            | ExprKind::AssignOp(..)
2329            | ExprKind::Lit(_)
2330            | ExprKind::ConstBlock(..)
2331            | ExprKind::Unary(..)
2332            | ExprKind::AddrOf(..)
2333            | ExprKind::Binary(..)
2334            | ExprKind::Yield(..)
2335            | ExprKind::Cast(..)
2336            | ExprKind::DropTemps(..) => false,
2337        }
2338    }
2339
2340    /// If this is a desugared range expression,
2341    /// returns the span of the range without desugaring context.
2342    pub fn range_span(&self) -> Option<Span> {
2343        is_range_literal(self).then(|| self.span.parent_callsite().unwrap())
2344    }
2345
2346    /// Check if expression is an integer literal that can be used
2347    /// where `usize` is expected.
2348    pub fn is_size_lit(&self) -> bool {
2349        #[allow(non_exhaustive_omitted_patterns)] match self.kind {
    ExprKind::Lit(Lit {
        node: LitKind::Int(_,
            LitIntType::Unsuffixed | LitIntType::Unsigned(UintTy::Usize)), ..
        }) => true,
    _ => false,
}matches!(
2350            self.kind,
2351            ExprKind::Lit(Lit {
2352                node: LitKind::Int(_, LitIntType::Unsuffixed | LitIntType::Unsigned(UintTy::Usize)),
2353                ..
2354            })
2355        )
2356    }
2357
2358    /// If `Self.kind` is `ExprKind::DropTemps(expr)`, drill down until we get a non-`DropTemps`
2359    /// `Expr`. This is used in suggestions to ignore this `ExprKind` as it is semantically
2360    /// silent, only signaling the ownership system. By doing this, suggestions that check the
2361    /// `ExprKind` of any given `Expr` for presentation don't have to care about `DropTemps`
2362    /// beyond remembering to call this function before doing analysis on it.
2363    pub fn peel_drop_temps(&self) -> &Self {
2364        let mut expr = self;
2365        while let ExprKind::DropTemps(inner) = &expr.kind {
2366            expr = inner;
2367        }
2368        expr
2369    }
2370
2371    pub fn peel_blocks(&self) -> &Self {
2372        let mut expr = self;
2373        while let ExprKind::Block(Block { expr: Some(inner), .. }, _) = &expr.kind {
2374            expr = inner;
2375        }
2376        expr
2377    }
2378
2379    pub fn peel_borrows(&self) -> &Self {
2380        let mut expr = self;
2381        while let ExprKind::AddrOf(.., inner) = &expr.kind {
2382            expr = inner;
2383        }
2384        expr
2385    }
2386
2387    pub fn can_have_side_effects(&self) -> bool {
2388        match self.peel_drop_temps().kind {
2389            ExprKind::Path(_) | ExprKind::Lit(_) | ExprKind::OffsetOf(..) | ExprKind::Use(..) => {
2390                false
2391            }
2392            ExprKind::Type(base, _)
2393            | ExprKind::Unary(_, base)
2394            | ExprKind::Field(base, _)
2395            | ExprKind::Index(base, _, _)
2396            | ExprKind::AddrOf(.., base)
2397            | ExprKind::Cast(base, _)
2398            | ExprKind::UnsafeBinderCast(_, base, _) => {
2399                // This isn't exactly true for `Index` and all `Unary`, but we are using this
2400                // method exclusively for diagnostics and there's a *cultural* pressure against
2401                // them being used only for its side-effects.
2402                base.can_have_side_effects()
2403            }
2404            ExprKind::Binary(_, lhs, rhs) => {
2405                // This isn't exactly true for all `Binary`, but we are using this
2406                // method exclusively for diagnostics and there's a *cultural* pressure against
2407                // them being used only for its side-effects.
2408                lhs.can_have_side_effects() || rhs.can_have_side_effects()
2409            }
2410            ExprKind::Struct(_, fields, init) => {
2411                let init_side_effects = match init {
2412                    StructTailExpr::Base(init) => init.can_have_side_effects(),
2413                    StructTailExpr::DefaultFields(_)
2414                    | StructTailExpr::None
2415                    | StructTailExpr::NoneWithError(_) => false,
2416                };
2417                fields.iter().map(|field| field.expr).any(|e| e.can_have_side_effects())
2418                    || init_side_effects
2419            }
2420
2421            ExprKind::Array(args)
2422            | ExprKind::Tup(args)
2423            | ExprKind::Call(
2424                Expr {
2425                    kind:
2426                        ExprKind::Path(QPath::Resolved(
2427                            None,
2428                            Path { res: Res::Def(DefKind::Ctor(_, CtorKind::Fn), _), .. },
2429                        )),
2430                    ..
2431                },
2432                args,
2433            ) => args.iter().any(|arg| arg.can_have_side_effects()),
2434            ExprKind::Repeat(arg, _) => arg.can_have_side_effects(),
2435            ExprKind::If(..)
2436            | ExprKind::Match(..)
2437            | ExprKind::MethodCall(..)
2438            | ExprKind::Call(..)
2439            | ExprKind::Closure { .. }
2440            | ExprKind::Block(..)
2441            | ExprKind::Break(..)
2442            | ExprKind::Continue(..)
2443            | ExprKind::Ret(..)
2444            | ExprKind::Become(..)
2445            | ExprKind::Let(..)
2446            | ExprKind::Loop(..)
2447            | ExprKind::Assign(..)
2448            | ExprKind::InlineAsm(..)
2449            | ExprKind::AssignOp(..)
2450            | ExprKind::ConstBlock(..)
2451            | ExprKind::Yield(..)
2452            | ExprKind::DropTemps(..)
2453            | ExprKind::Err(_) => true,
2454        }
2455    }
2456
2457    /// To a first-order approximation, is this a pattern?
2458    pub fn is_approximately_pattern(&self) -> bool {
2459        match &self.kind {
2460            ExprKind::Array(_)
2461            | ExprKind::Call(..)
2462            | ExprKind::Tup(_)
2463            | ExprKind::Lit(_)
2464            | ExprKind::Path(_)
2465            | ExprKind::Struct(..) => true,
2466            _ => false,
2467        }
2468    }
2469
2470    /// Whether this and the `other` expression are the same for purposes of an indexing operation.
2471    ///
2472    /// This is only used for diagnostics to see if we have things like `foo[i]` where `foo` is
2473    /// borrowed multiple times with `i`.
2474    pub fn equivalent_for_indexing(&self, other: &Expr<'_>) -> bool {
2475        match (self.kind, other.kind) {
2476            (ExprKind::Lit(lit1), ExprKind::Lit(lit2)) => lit1.node == lit2.node,
2477            (
2478                ExprKind::Path(QPath::Resolved(None, path1)),
2479                ExprKind::Path(QPath::Resolved(None, path2)),
2480            ) => path1.res == path2.res,
2481            (
2482                ExprKind::Struct(
2483                    &QPath::Resolved(None, &Path { res: Res::Def(_, path1_def_id), .. }),
2484                    args1,
2485                    StructTailExpr::None,
2486                ),
2487                ExprKind::Struct(
2488                    &QPath::Resolved(None, &Path { res: Res::Def(_, path2_def_id), .. }),
2489                    args2,
2490                    StructTailExpr::None,
2491                ),
2492            ) => {
2493                path2_def_id == path1_def_id
2494                    && is_range_literal(self)
2495                    && is_range_literal(other)
2496                    && std::iter::zip(args1, args2)
2497                        .all(|(a, b)| a.expr.equivalent_for_indexing(b.expr))
2498            }
2499            _ => false,
2500        }
2501    }
2502
2503    pub fn method_ident(&self) -> Option<Ident> {
2504        match self.kind {
2505            ExprKind::MethodCall(receiver_method, ..) => Some(receiver_method.ident),
2506            ExprKind::Unary(_, expr) | ExprKind::AddrOf(.., expr) => expr.method_ident(),
2507            _ => None,
2508        }
2509    }
2510}
2511
2512/// Checks if the specified expression is a built-in range literal.
2513/// (See: `LoweringContext::lower_expr()`).
2514pub fn is_range_literal(expr: &Expr<'_>) -> bool {
2515    if let ExprKind::Struct(QPath::Resolved(None, path), _, StructTailExpr::None) = expr.kind
2516        && let [.., segment] = path.segments
2517        && let sym::RangeFrom
2518        | sym::RangeFull
2519        | sym::Range
2520        | sym::RangeToInclusive
2521        | sym::RangeTo
2522        | sym::RangeFromCopy
2523        | sym::RangeCopy
2524        | sym::RangeInclusiveCopy
2525        | sym::RangeToInclusiveCopy = segment.ident.name
2526        && expr.span.is_desugaring(DesugaringKind::RangeExpr)
2527    {
2528        true
2529    } else if let ExprKind::Call(func, _) = &expr.kind
2530        && let ExprKind::Path(QPath::Resolved(None, path)) = func.kind
2531        && let [.., segment] = path.segments
2532        && let sym::range_inclusive_new = segment.ident.name
2533        && expr.span.is_desugaring(DesugaringKind::RangeExpr)
2534    {
2535        true
2536    } else {
2537        false
2538    }
2539}
2540
2541/// Checks if the specified expression needs parentheses for prefix
2542/// or postfix suggestions to be valid.
2543/// For example, `a + b` requires parentheses to suggest `&(a + b)`,
2544/// but just `a` does not.
2545/// Similarly, `(a + b).c()` also requires parentheses.
2546/// This should not be used for other types of suggestions.
2547pub fn expr_needs_parens(expr: &Expr<'_>) -> bool {
2548    match expr.kind {
2549        // parenthesize if needed (Issue #46756)
2550        ExprKind::Cast(_, _) | ExprKind::Binary(_, _, _) => true,
2551        // parenthesize borrows of range literals (Issue #54505)
2552        _ if is_range_literal(expr) => true,
2553        _ => false,
2554    }
2555}
2556
2557#[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)]
2558pub enum ExprKind<'hir> {
2559    /// Allow anonymous constants from an inline `const` block
2560    ConstBlock(ConstBlock),
2561    /// An array (e.g., `[a, b, c, d]`).
2562    Array(&'hir [Expr<'hir>]),
2563    /// A function call.
2564    ///
2565    /// The first field resolves to the function itself (usually an `ExprKind::Path`),
2566    /// and the second field is the list of arguments.
2567    /// This also represents calling the constructor of
2568    /// tuple-like ADTs such as tuple structs and enum variants.
2569    Call(&'hir Expr<'hir>, &'hir [Expr<'hir>]),
2570    /// A method call (e.g., `x.foo::<'static, Bar, Baz>(a, b, c, d)`).
2571    ///
2572    /// The `PathSegment` represents the method name and its generic arguments
2573    /// (within the angle brackets).
2574    /// The `&Expr` is the expression that evaluates
2575    /// to the object on which the method is being called on (the receiver),
2576    /// and the `&[Expr]` is the rest of the arguments.
2577    /// Thus, `x.foo::<Bar, Baz>(a, b, c, d)` is represented as
2578    /// `ExprKind::MethodCall(PathSegment { foo, [Bar, Baz] }, x, [a, b, c, d], span)`.
2579    /// The final `Span` represents the span of the function and arguments
2580    /// (e.g. `foo::<Bar, Baz>(a, b, c, d)` in `x.foo::<Bar, Baz>(a, b, c, d)`
2581    ///
2582    /// To resolve the called method to a `DefId`, call [`type_dependent_def_id`] with
2583    /// the `hir_id` of the `MethodCall` node itself.
2584    ///
2585    /// [`type_dependent_def_id`]: ../../rustc_middle/ty/struct.TypeckResults.html#method.type_dependent_def_id
2586    MethodCall(&'hir PathSegment<'hir>, &'hir Expr<'hir>, &'hir [Expr<'hir>], Span),
2587    /// An use expression (e.g., `var.use`).
2588    Use(&'hir Expr<'hir>, Span),
2589    /// A tuple (e.g., `(a, b, c, d)`).
2590    Tup(&'hir [Expr<'hir>]),
2591    /// A binary operation (e.g., `a + b`, `a * b`).
2592    Binary(BinOp, &'hir Expr<'hir>, &'hir Expr<'hir>),
2593    /// A unary operation (e.g., `!x`, `*x`).
2594    Unary(UnOp, &'hir Expr<'hir>),
2595    /// A literal (e.g., `1`, `"foo"`).
2596    Lit(Lit),
2597    /// A cast (e.g., `foo as f64`).
2598    Cast(&'hir Expr<'hir>, &'hir Ty<'hir>),
2599    /// A type ascription (e.g., `x: Foo`). See RFC 3307.
2600    Type(&'hir Expr<'hir>, &'hir Ty<'hir>),
2601    /// Wraps the expression in a terminating scope.
2602    /// This makes it semantically equivalent to `{ let _t = expr; _t }`.
2603    ///
2604    /// This construct only exists to tweak the drop order in AST lowering.
2605    /// An example of that is the desugaring of `for` loops.
2606    DropTemps(&'hir Expr<'hir>),
2607    /// A `let $pat = $expr` expression.
2608    ///
2609    /// These are not [`LetStmt`] and only occur as expressions.
2610    /// The `let Some(x) = foo()` in `if let Some(x) = foo()` is an example of `Let(..)`.
2611    Let(&'hir LetExpr<'hir>),
2612    /// An `if` block, with an optional else block.
2613    ///
2614    /// I.e., `if <expr> { <expr> } else { <expr> }`.
2615    ///
2616    /// The "then" expr is always `ExprKind::Block`. If present, the "else" expr is always
2617    /// `ExprKind::Block` (for `else`) or `ExprKind::If` (for `else if`).
2618    /// Note that using an `Expr` instead of a `Block` for the "then" part is intentional,
2619    /// as it simplifies the type coercion machinery.
2620    If(&'hir Expr<'hir>, &'hir Expr<'hir>, Option<&'hir Expr<'hir>>),
2621    /// A conditionless loop (can be exited with `break`, `continue`, or `return`).
2622    ///
2623    /// I.e., `'label: loop { <block> }`.
2624    ///
2625    /// The `Span` is the loop header (`for x in y`/`while let pat = expr`).
2626    Loop(&'hir Block<'hir>, Option<Label>, LoopSource, Span),
2627    /// A `match` block, with a source that indicates whether or not it is
2628    /// the result of a desugaring, and if so, which kind.
2629    Match(&'hir Expr<'hir>, &'hir [Arm<'hir>], MatchSource),
2630    /// A closure (e.g., `move |a, b, c| {a + b + c}`).
2631    ///
2632    /// The `Span` is the argument block `|...|`.
2633    ///
2634    /// This may also be a coroutine literal or an `async block` as indicated by the
2635    /// `Option<Movability>`.
2636    Closure(&'hir Closure<'hir>),
2637    /// A block (e.g., `'label: { ... }`).
2638    Block(&'hir Block<'hir>, Option<Label>),
2639
2640    /// An assignment (e.g., `a = foo()`).
2641    Assign(&'hir Expr<'hir>, &'hir Expr<'hir>, Span),
2642    /// An assignment with an operator.
2643    ///
2644    /// E.g., `a += 1`.
2645    AssignOp(AssignOp, &'hir Expr<'hir>, &'hir Expr<'hir>),
2646    /// Access of a named (e.g., `obj.foo`) or unnamed (e.g., `obj.0`) struct or tuple field.
2647    Field(&'hir Expr<'hir>, Ident),
2648    /// An indexing operation (`foo[2]`).
2649    /// Similar to [`ExprKind::MethodCall`], the final `Span` represents the span of the brackets
2650    /// and index.
2651    Index(&'hir Expr<'hir>, &'hir Expr<'hir>, Span),
2652
2653    /// Path to a definition, possibly containing lifetime or type parameters.
2654    Path(QPath<'hir>),
2655
2656    /// A referencing operation (i.e., `&a` or `&mut a`).
2657    AddrOf(BorrowKind, Mutability, &'hir Expr<'hir>),
2658    /// A `break`, with an optional label to break.
2659    Break(Destination, Option<&'hir Expr<'hir>>),
2660    /// A `continue`, with an optional label.
2661    Continue(Destination),
2662    /// A `return`, with an optional value to be returned.
2663    Ret(Option<&'hir Expr<'hir>>),
2664    /// A `become`, with the value to be returned.
2665    Become(&'hir Expr<'hir>),
2666
2667    /// Inline assembly (from `asm!`), with its outputs and inputs.
2668    InlineAsm(&'hir InlineAsm<'hir>),
2669
2670    /// Field offset (`offset_of!`)
2671    OffsetOf(&'hir Ty<'hir>, &'hir [Ident]),
2672
2673    /// A struct or struct-like variant literal expression.
2674    ///
2675    /// E.g., `Foo {x: 1, y: 2}`, or `Foo {x: 1, .. base}`,
2676    /// where `base` is the `Option<Expr>`.
2677    Struct(&'hir QPath<'hir>, &'hir [ExprField<'hir>], StructTailExpr<'hir>),
2678
2679    /// An array literal constructed from one repeated element.
2680    ///
2681    /// E.g., `[1; 5]`. The first expression is the element
2682    /// to be repeated; the second is the number of times to repeat it.
2683    Repeat(&'hir Expr<'hir>, &'hir ConstArg<'hir>),
2684
2685    /// A suspension point for coroutines (i.e., `yield <expr>`).
2686    Yield(&'hir Expr<'hir>, YieldSource),
2687
2688    /// Operators which can be used to interconvert `unsafe` binder types.
2689    /// e.g. `unsafe<'a> &'a i32` <=> `&i32`.
2690    UnsafeBinderCast(UnsafeBinderCastKind, &'hir Expr<'hir>, Option<&'hir Ty<'hir>>),
2691
2692    /// A placeholder for an expression that wasn't syntactically well formed in some way.
2693    Err(rustc_span::ErrorGuaranteed),
2694}
2695
2696#[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)]
2697pub enum StructTailExpr<'hir> {
2698    /// A struct expression where all the fields are explicitly enumerated: `Foo { a, b }`.
2699    None,
2700    /// A struct expression with a "base", an expression of the same type as the outer struct that
2701    /// will be used to populate any fields not explicitly mentioned: `Foo { ..base }`
2702    Base(&'hir Expr<'hir>),
2703    /// A struct expression with a `..` tail but no "base" expression. The values from the struct
2704    /// fields' default values will be used to populate any fields not explicitly mentioned:
2705    /// `Foo { .. }`.
2706    DefaultFields(Span),
2707    /// No trailing `..` was written, and also, a parse error occurred inside the struct braces.
2708    ///
2709    /// This struct should be treated similarly to as if it had an `..` in it,
2710    /// in particular rather than reporting missing fields, because the parse error
2711    /// makes which fields the struct was intended to have not fully known.
2712    NoneWithError(ErrorGuaranteed),
2713}
2714
2715/// Represents an optionally `Self`-qualified value/type path or associated extension.
2716///
2717/// To resolve the path to a `DefId`, call [`qpath_res`].
2718///
2719/// [`qpath_res`]: ../../rustc_middle/ty/struct.TypeckResults.html#method.qpath_res
2720#[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)]
2721pub enum QPath<'hir> {
2722    /// Path to a definition, optionally "fully-qualified" with a `Self`
2723    /// type, if the path points to an associated item in a trait.
2724    ///
2725    /// E.g., an unqualified path like `Clone::clone` has `None` for `Self`,
2726    /// while `<Vec<T> as Clone>::clone` has `Some(Vec<T>)` for `Self`,
2727    /// even though they both have the same two-segment `Clone::clone` `Path`.
2728    Resolved(Option<&'hir Ty<'hir>>, &'hir Path<'hir>),
2729
2730    /// Type-related paths (e.g., `<T>::default` or `<T>::Output`).
2731    /// Will be resolved by type-checking to an associated item.
2732    ///
2733    /// UFCS source paths can desugar into this, with `Vec::new` turning into
2734    /// `<Vec>::new`, and `T::X::Y::method` into `<<<T>::X>::Y>::method`,
2735    /// the `X` and `Y` nodes each being a `TyKind::Path(QPath::TypeRelative(..))`.
2736    TypeRelative(&'hir Ty<'hir>, &'hir PathSegment<'hir>),
2737}
2738
2739impl<'hir> QPath<'hir> {
2740    /// Returns the span of this `QPath`.
2741    pub fn span(&self) -> Span {
2742        match *self {
2743            QPath::Resolved(_, path) => path.span,
2744            QPath::TypeRelative(qself, ps) => qself.span.to(ps.ident.span),
2745        }
2746    }
2747
2748    /// Returns the span of the qself of this `QPath`. For example, `()` in
2749    /// `<() as Trait>::method`.
2750    pub fn qself_span(&self) -> Span {
2751        match *self {
2752            QPath::Resolved(_, path) => path.span,
2753            QPath::TypeRelative(qself, _) => qself.span,
2754        }
2755    }
2756}
2757
2758/// Hints at the original code for a let statement.
2759#[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)]
2760pub enum LocalSource {
2761    /// A `match _ { .. }`.
2762    Normal,
2763    /// When lowering async functions, we create locals within the `async move` so that
2764    /// all parameters are dropped after the future is polled.
2765    ///
2766    /// ```ignore (pseudo-Rust)
2767    /// async fn foo(<pattern> @ x: Type) {
2768    ///     async move {
2769    ///         let <pattern> = x;
2770    ///     }
2771    /// }
2772    /// ```
2773    AsyncFn,
2774    /// A desugared `<expr>.await`.
2775    AwaitDesugar,
2776    /// A desugared `expr = expr`, where the LHS is a tuple, struct, array or underscore expression.
2777    AssignDesugar,
2778    /// A contract `#[ensures(..)]` attribute injects a let binding for the check that runs at point of return.
2779    Contract,
2780}
2781
2782/// Hints at the original code for a `match _ { .. }`.
2783#[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)]
2784pub enum MatchSource {
2785    /// A `match _ { .. }`.
2786    Normal,
2787    /// A `expr.match { .. }`.
2788    Postfix,
2789    /// A desugared `for _ in _ { .. }` loop.
2790    ForLoopDesugar,
2791    /// A desugared `?` operator.
2792    TryDesugar(HirId),
2793    /// A desugared `<expr>.await`.
2794    AwaitDesugar,
2795    /// A desugared `format_args!()`.
2796    FormatArgs,
2797}
2798
2799impl MatchSource {
2800    #[inline]
2801    pub const fn name(self) -> &'static str {
2802        use MatchSource::*;
2803        match self {
2804            Normal => "match",
2805            Postfix => ".match",
2806            ForLoopDesugar => "for",
2807            TryDesugar(_) => "?",
2808            AwaitDesugar => ".await",
2809            FormatArgs => "format_args!()",
2810        }
2811    }
2812}
2813
2814/// The loop type that yielded an `ExprKind::Loop`.
2815#[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)]
2816pub enum LoopSource {
2817    /// A `loop { .. }` loop.
2818    Loop,
2819    /// A `while _ { .. }` loop.
2820    While,
2821    /// A `for _ in _ { .. }` loop.
2822    ForLoop,
2823}
2824
2825impl LoopSource {
2826    pub fn name(self) -> &'static str {
2827        match self {
2828            LoopSource::Loop => "loop",
2829            LoopSource::While => "while",
2830            LoopSource::ForLoop => "for",
2831        }
2832    }
2833}
2834
2835#[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)]
2836pub enum LoopIdError {
2837    OutsideLoopScope,
2838    UnlabeledCfInWhileCondition,
2839    UnresolvedLabel,
2840}
2841
2842impl fmt::Display for LoopIdError {
2843    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2844        f.write_str(match self {
2845            LoopIdError::OutsideLoopScope => "not inside loop scope",
2846            LoopIdError::UnlabeledCfInWhileCondition => {
2847                "unlabeled control flow (break or continue) in while condition"
2848            }
2849            LoopIdError::UnresolvedLabel => "label not found",
2850        })
2851    }
2852}
2853
2854#[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)]
2855pub struct Destination {
2856    /// This is `Some(_)` iff there is an explicit user-specified 'label
2857    pub label: Option<Label>,
2858
2859    /// These errors are caught and then reported during the diagnostics pass in
2860    /// `librustc_passes/loops.rs`
2861    pub target_id: Result<HirId, LoopIdError>,
2862}
2863
2864/// The yield kind that caused an `ExprKind::Yield`.
2865#[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)]
2866pub enum YieldSource {
2867    /// An `<expr>.await`.
2868    Await { expr: Option<HirId> },
2869    /// A plain `yield`.
2870    Yield,
2871}
2872
2873impl fmt::Display for YieldSource {
2874    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2875        f.write_str(match self {
2876            YieldSource::Await { .. } => "`await`",
2877            YieldSource::Yield => "`yield`",
2878        })
2879    }
2880}
2881
2882// N.B., if you change this, you'll probably want to change the corresponding
2883// type structure in middle/ty.rs as well.
2884#[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)]
2885pub struct MutTy<'hir> {
2886    pub ty: &'hir Ty<'hir>,
2887    pub mutbl: Mutability,
2888}
2889
2890/// Represents a function's signature in a trait declaration,
2891/// trait implementation, or a free function.
2892#[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)]
2893pub struct FnSig<'hir> {
2894    pub header: FnHeader,
2895    pub decl: &'hir FnDecl<'hir>,
2896    pub span: Span,
2897}
2898
2899// The bodies for items are stored "out of line", in a separate
2900// hashmap in the `Crate`. Here we just record the hir-id of the item
2901// so it can fetched later.
2902#[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)]
2903pub struct TraitItemId {
2904    pub owner_id: OwnerId,
2905}
2906
2907impl TraitItemId {
2908    #[inline]
2909    pub fn hir_id(&self) -> HirId {
2910        // Items are always HIR owners.
2911        HirId::make_owner(self.owner_id.def_id)
2912    }
2913}
2914
2915/// Represents an item declaration within a trait declaration,
2916/// possibly including a default implementation. A trait item is
2917/// either required (meaning it doesn't have an implementation, just a
2918/// signature) or provided (meaning it has a default implementation).
2919#[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"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.ident, &self.owner_id, &self.generics, &self.kind,
                        &self.span, &&self.defaultness];
        ::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>;
        *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 } => {
                        { __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)]
2920pub struct TraitItem<'hir> {
2921    pub ident: Ident,
2922    pub owner_id: OwnerId,
2923    pub generics: &'hir Generics<'hir>,
2924    pub kind: TraitItemKind<'hir>,
2925    pub span: Span,
2926    pub defaultness: Defaultness,
2927}
2928
2929macro_rules! expect_methods_self_kind {
2930    ( $( $name:ident, $ret_ty:ty, $pat:pat, $ret_val:expr; )* ) => {
2931        $(
2932            #[track_caller]
2933            pub fn $name(&self) -> $ret_ty {
2934                let $pat = &self.kind else { expect_failed(stringify!($name), self) };
2935                $ret_val
2936            }
2937        )*
2938    }
2939}
2940
2941macro_rules! expect_methods_self {
2942    ( $( $name:ident, $ret_ty:ty, $pat:pat, $ret_val:expr; )* ) => {
2943        $(
2944            #[track_caller]
2945            pub fn $name(&self) -> $ret_ty {
2946                let $pat = self else { expect_failed(stringify!($name), self) };
2947                $ret_val
2948            }
2949        )*
2950    }
2951}
2952
2953#[track_caller]
2954fn expect_failed<T: fmt::Debug>(ident: &'static str, found: T) -> ! {
2955    {
    ::core::panicking::panic_fmt(format_args!("{0}: found {1:?}", ident,
            found));
}panic!("{ident}: found {found:?}")
2956}
2957
2958impl<'hir> TraitItem<'hir> {
2959    #[inline]
2960    pub fn hir_id(&self) -> HirId {
2961        // Items are always HIR owners.
2962        HirId::make_owner(self.owner_id.def_id)
2963    }
2964
2965    pub fn trait_item_id(&self) -> TraitItemId {
2966        TraitItemId { owner_id: self.owner_id }
2967    }
2968
2969    #[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! {
2970        expect_const, (&'hir Ty<'hir>, Option<ConstItemRhs<'hir>>),
2971            TraitItemKind::Const(ty, rhs), (ty, *rhs);
2972
2973        expect_fn, (&FnSig<'hir>, &TraitFn<'hir>),
2974            TraitItemKind::Fn(ty, trfn), (ty, trfn);
2975
2976        expect_type, (GenericBounds<'hir>, Option<&'hir Ty<'hir>>),
2977            TraitItemKind::Type(bounds, ty), (bounds, *ty);
2978    }
2979}
2980
2981/// Represents a trait method's body (or just argument names).
2982#[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)]
2983pub enum TraitFn<'hir> {
2984    /// No default body in the trait, just a signature.
2985    Required(&'hir [Option<Ident>]),
2986
2987    /// Both signature and body are provided in the trait.
2988    Provided(BodyId),
2989}
2990
2991/// Represents a trait method or associated constant or type
2992#[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) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Const",
                    __self_0, &__self_1),
            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<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) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.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)]
2993pub enum TraitItemKind<'hir> {
2994    /// An associated constant with an optional value (otherwise `impl`s must contain a value).
2995    Const(&'hir Ty<'hir>, Option<ConstItemRhs<'hir>>),
2996    /// An associated function with an optional body.
2997    Fn(FnSig<'hir>, TraitFn<'hir>),
2998    /// An associated type with (possibly empty) bounds and optional concrete
2999    /// type.
3000    Type(GenericBounds<'hir>, Option<&'hir Ty<'hir>>),
3001}
3002
3003// The bodies for items are stored "out of line", in a separate
3004// hashmap in the `Crate`. Here we just record the hir-id of the item
3005// so it can fetched later.
3006#[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)]
3007pub struct ImplItemId {
3008    pub owner_id: OwnerId,
3009}
3010
3011impl ImplItemId {
3012    #[inline]
3013    pub fn hir_id(&self) -> HirId {
3014        // Items are always HIR owners.
3015        HirId::make_owner(self.owner_id.def_id)
3016    }
3017}
3018
3019/// Represents an associated item within an impl block.
3020///
3021/// Refer to [`Impl`] for an impl block declaration.
3022#[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"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.ident, &self.owner_id, &self.generics, &self.kind,
                        &self.impl_kind, &&self.span];
        ::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>;
        *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 } => {
                        { __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)]
3023pub struct ImplItem<'hir> {
3024    pub ident: Ident,
3025    pub owner_id: OwnerId,
3026    pub generics: &'hir Generics<'hir>,
3027    pub kind: ImplItemKind<'hir>,
3028    pub impl_kind: ImplItemImplKind,
3029    pub span: Span,
3030}
3031
3032#[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)]
3033pub enum ImplItemImplKind {
3034    Inherent {
3035        vis_span: Span,
3036    },
3037    Trait {
3038        defaultness: Defaultness,
3039        /// Item in the trait that this item implements
3040        trait_item_def_id: Result<DefId, ErrorGuaranteed>,
3041    },
3042}
3043
3044impl<'hir> ImplItem<'hir> {
3045    #[inline]
3046    pub fn hir_id(&self) -> HirId {
3047        // Items are always HIR owners.
3048        HirId::make_owner(self.owner_id.def_id)
3049    }
3050
3051    pub fn impl_item_id(&self) -> ImplItemId {
3052        ImplItemId { owner_id: self.owner_id }
3053    }
3054
3055    pub fn vis_span(&self) -> Option<Span> {
3056        match self.impl_kind {
3057            ImplItemImplKind::Trait { .. } => None,
3058            ImplItemImplKind::Inherent { vis_span, .. } => Some(vis_span),
3059        }
3060    }
3061
3062    #[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! {
3063        expect_const, (&'hir Ty<'hir>, ConstItemRhs<'hir>), ImplItemKind::Const(ty, rhs), (ty, *rhs);
3064        expect_fn,    (&FnSig<'hir>, BodyId),               ImplItemKind::Fn(ty, body),   (ty, *body);
3065        expect_type,  &'hir Ty<'hir>,                       ImplItemKind::Type(ty),       ty;
3066    }
3067}
3068
3069/// Represents various kinds of content within an `impl`.
3070#[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)]
3071pub enum ImplItemKind<'hir> {
3072    /// An associated constant of the given type, set to the constant result
3073    /// of the expression.
3074    Const(&'hir Ty<'hir>, ConstItemRhs<'hir>),
3075    /// An associated function implementation with the given signature and body.
3076    Fn(FnSig<'hir>, BodyId),
3077    /// An associated type.
3078    Type(&'hir Ty<'hir>),
3079}
3080
3081/// A constraint on an associated item.
3082///
3083/// ### Examples
3084///
3085/// * the `A = Ty` and `B = Ty` in `Trait<A = Ty, B = Ty>`
3086/// * the `G<Ty> = Ty` in `Trait<G<Ty> = Ty>`
3087/// * the `A: Bound` in `Trait<A: Bound>`
3088/// * the `RetTy` in `Trait(ArgTy, ArgTy) -> RetTy`
3089/// * the `C = { Ct }` in `Trait<C = { Ct }>` (feature `min_generic_const_args`)
3090/// * the `f(..): Bound` in `Trait<f(..): Bound>` (feature `return_type_notation`)
3091#[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)]
3092pub struct AssocItemConstraint<'hir> {
3093    #[stable_hash(ignore)]
3094    pub hir_id: HirId,
3095    pub ident: Ident,
3096    pub gen_args: &'hir GenericArgs<'hir>,
3097    pub kind: AssocItemConstraintKind<'hir>,
3098    pub span: Span,
3099}
3100
3101impl<'hir> AssocItemConstraint<'hir> {
3102    /// Obtain the type on the RHS of an assoc ty equality constraint if applicable.
3103    pub fn ty(self) -> Option<&'hir Ty<'hir>> {
3104        match self.kind {
3105            AssocItemConstraintKind::Equality { term: Term::Ty(ty) } => Some(ty),
3106            _ => None,
3107        }
3108    }
3109
3110    /// Obtain the const on the RHS of an assoc const equality constraint if applicable.
3111    pub fn ct(self) -> Option<&'hir ConstArg<'hir>> {
3112        match self.kind {
3113            AssocItemConstraintKind::Equality { term: Term::Const(ct) } => Some(ct),
3114            _ => None,
3115        }
3116    }
3117}
3118
3119#[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)]
3120pub enum Term<'hir> {
3121    Ty(&'hir Ty<'hir>),
3122    Const(&'hir ConstArg<'hir>),
3123}
3124
3125impl<'hir> From<&'hir Ty<'hir>> for Term<'hir> {
3126    fn from(ty: &'hir Ty<'hir>) -> Self {
3127        Term::Ty(ty)
3128    }
3129}
3130
3131impl<'hir> From<&'hir ConstArg<'hir>> for Term<'hir> {
3132    fn from(c: &'hir ConstArg<'hir>) -> Self {
3133        Term::Const(c)
3134    }
3135}
3136
3137/// The kind of [associated item constraint][AssocItemConstraint].
3138#[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)]
3139pub enum AssocItemConstraintKind<'hir> {
3140    /// An equality constraint for an associated item (e.g., `AssocTy = Ty` in `Trait<AssocTy = Ty>`).
3141    ///
3142    /// Also known as an *associated item binding* (we *bind* an associated item to a term).
3143    ///
3144    /// Furthermore, associated type equality constraints can also be referred to as *associated type
3145    /// bindings*. Similarly with associated const equality constraints and *associated const bindings*.
3146    Equality { term: Term<'hir> },
3147    /// A bound on an associated type (e.g., `AssocTy: Bound` in `Trait<AssocTy: Bound>`).
3148    Bound { bounds: &'hir [GenericBound<'hir>] },
3149}
3150
3151impl<'hir> AssocItemConstraintKind<'hir> {
3152    pub fn descr(&self) -> &'static str {
3153        match self {
3154            AssocItemConstraintKind::Equality { .. } => "binding",
3155            AssocItemConstraintKind::Bound { .. } => "constraint",
3156        }
3157    }
3158}
3159
3160/// An uninhabited enum used to make `Infer` variants on [`Ty`] and [`ConstArg`] be
3161/// unreachable. Zero-Variant enums are guaranteed to have the same layout as the never
3162/// type.
3163#[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)]
3164pub enum AmbigArg {}
3165
3166/// Represents a type in the `HIR`.
3167///
3168/// For an explanation of the `Unambig` generic parameter see the dev-guide:
3169/// <https://rustc-dev-guide.rust-lang.org/ambig-unambig-ty-and-consts.html>
3170#[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)]
3171#[repr(C)]
3172pub struct Ty<'hir, Unambig = ()> {
3173    #[stable_hash(ignore)]
3174    pub hir_id: HirId,
3175    pub span: Span,
3176    pub kind: TyKind<'hir, Unambig>,
3177}
3178
3179impl<'hir> Ty<'hir, AmbigArg> {
3180    /// Converts a `Ty` in an ambiguous position to one in an unambiguous position.
3181    ///
3182    /// Functions accepting an unambiguous types may expect the [`TyKind::Infer`] variant
3183    /// to be used. Care should be taken to separately handle infer types when calling this
3184    /// function as it cannot be handled by downstream code making use of the returned ty.
3185    ///
3186    /// In practice this may mean overriding the [`Visitor::visit_infer`][visit_infer] method on hir visitors, or
3187    /// specifically matching on [`GenericArg::Infer`] when handling generic arguments.
3188    ///
3189    /// [visit_infer]: [rustc_hir::intravisit::Visitor::visit_infer]
3190    pub fn as_unambig_ty(&self) -> &Ty<'hir> {
3191        // SAFETY: `Ty` is `repr(C)` and `TyKind` is marked `repr(u8)` so that the layout is
3192        // the same across different ZST type arguments.
3193        let ptr = self as *const Ty<'hir, AmbigArg> as *const Ty<'hir, ()>;
3194        unsafe { &*ptr }
3195    }
3196}
3197
3198impl<'hir> Ty<'hir> {
3199    /// Converts a `Ty` in an unambiguous position to one in an ambiguous position. This is
3200    /// fallible as the [`TyKind::Infer`] variant is not present in ambiguous positions.
3201    ///
3202    /// Functions accepting ambiguous types will not handle the [`TyKind::Infer`] variant, if
3203    /// infer types are relevant to you then care should be taken to handle them separately.
3204    pub fn try_as_ambig_ty(&self) -> Option<&Ty<'hir, AmbigArg>> {
3205        if let TyKind::Infer(()) = self.kind {
3206            return None;
3207        }
3208
3209        // SAFETY: `Ty` is `repr(C)` and `TyKind` is marked `repr(u8)` so that the layout is
3210        // the same across different ZST type arguments. We also asserted that the `self` is
3211        // not a `TyKind::Infer` so there is no risk of transmuting a `()` to `AmbigArg`.
3212        let ptr = self as *const Ty<'hir> as *const Ty<'hir, AmbigArg>;
3213        Some(unsafe { &*ptr })
3214    }
3215}
3216
3217impl<'hir> Ty<'hir, AmbigArg> {
3218    pub fn peel_refs(&self) -> &Ty<'hir> {
3219        let mut final_ty = self.as_unambig_ty();
3220        while let TyKind::Ref(_, MutTy { ty, .. }) = &final_ty.kind {
3221            final_ty = ty;
3222        }
3223        final_ty
3224    }
3225}
3226
3227impl<'hir> Ty<'hir> {
3228    pub fn peel_refs(&self) -> &Self {
3229        let mut final_ty = self;
3230        while let TyKind::Ref(_, MutTy { ty, .. }) = &final_ty.kind {
3231            final_ty = ty;
3232        }
3233        final_ty
3234    }
3235
3236    /// Returns `true` if `param_def_id` matches the `bounded_ty` of this predicate.
3237    pub fn as_generic_param(&self) -> Option<(DefId, Ident)> {
3238        let TyKind::Path(QPath::Resolved(None, path)) = self.kind else {
3239            return None;
3240        };
3241        let [segment] = &path.segments else {
3242            return None;
3243        };
3244        match path.res {
3245            Res::Def(DefKind::TyParam, def_id) | Res::SelfTyParam { trait_: def_id } => {
3246                Some((def_id, segment.ident))
3247            }
3248            _ => None,
3249        }
3250    }
3251
3252    pub fn find_self_aliases(&self) -> Vec<Span> {
3253        use crate::intravisit::Visitor;
3254        struct MyVisitor(Vec<Span>);
3255        impl<'v> Visitor<'v> for MyVisitor {
3256            fn visit_ty(&mut self, t: &'v Ty<'v, AmbigArg>) {
3257                if #[allow(non_exhaustive_omitted_patterns)] match &t.kind {
    TyKind::Path(QPath::Resolved(_, Path {
        res: crate::def::Res::SelfTyAlias { .. }, .. })) => true,
    _ => false,
}matches!(
3258                    &t.kind,
3259                    TyKind::Path(QPath::Resolved(
3260                        _,
3261                        Path { res: crate::def::Res::SelfTyAlias { .. }, .. },
3262                    ))
3263                ) {
3264                    self.0.push(t.span);
3265                    return;
3266                }
3267                crate::intravisit::walk_ty(self, t);
3268            }
3269        }
3270
3271        let mut my_visitor = MyVisitor(::alloc::vec::Vec::new()vec![]);
3272        my_visitor.visit_ty_unambig(self);
3273        my_visitor.0
3274    }
3275
3276    /// Whether `ty` is a type with `_` placeholders that can be inferred. Used in diagnostics only to
3277    /// use inference to provide suggestions for the appropriate type if possible.
3278    pub fn is_suggestable_infer_ty(&self) -> bool {
3279        fn are_suggestable_generic_args(generic_args: &[GenericArg<'_>]) -> bool {
3280            generic_args.iter().any(|arg| match arg {
3281                GenericArg::Type(ty) => ty.as_unambig_ty().is_suggestable_infer_ty(),
3282                GenericArg::Infer(_) => true,
3283                _ => false,
3284            })
3285        }
3286        {
    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:3286",
                        "rustc_hir::hir", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_hir/src/hir.rs"),
                        ::tracing_core::__macro_support::Option::Some(3286u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_hir::hir"),
                        ::tracing_core::field::FieldSet::new(&[{
                                            const NAME:
                                                ::tracing::__macro_support::FieldName<{
                                                    ::tracing::__macro_support::FieldName::len("self")
                                                }> =
                                                ::tracing::__macro_support::FieldName::new("self");
                                            NAME.as_str()
                                        }], ::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};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&self)
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(?self);
3287        match &self.kind {
3288            TyKind::Infer(()) => true,
3289            TyKind::Slice(ty) => ty.is_suggestable_infer_ty(),
3290            TyKind::Array(ty, length) => {
3291                ty.is_suggestable_infer_ty() || #[allow(non_exhaustive_omitted_patterns)] match length.kind {
    ConstArgKind::Infer(..) => true,
    _ => false,
}matches!(length.kind, ConstArgKind::Infer(..))
3292            }
3293            TyKind::Tup(tys) => tys.iter().any(Self::is_suggestable_infer_ty),
3294            TyKind::Ptr(mut_ty) | TyKind::Ref(_, mut_ty) => mut_ty.ty.is_suggestable_infer_ty(),
3295            TyKind::Path(QPath::TypeRelative(ty, segment)) => {
3296                ty.is_suggestable_infer_ty() || are_suggestable_generic_args(segment.args().args)
3297            }
3298            TyKind::Path(QPath::Resolved(ty_opt, Path { segments, .. })) => {
3299                ty_opt.is_some_and(Self::is_suggestable_infer_ty)
3300                    || segments
3301                        .iter()
3302                        .any(|segment| are_suggestable_generic_args(segment.args().args))
3303            }
3304            _ => false,
3305        }
3306    }
3307}
3308
3309/// Not represented directly in the AST; referred to by name through a `ty_path`.
3310#[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)]
3311pub enum PrimTy {
3312    Int(IntTy),
3313    Uint(UintTy),
3314    Float(FloatTy),
3315    Str,
3316    Bool,
3317    Char,
3318}
3319
3320impl PrimTy {
3321    /// All of the primitive types
3322    pub const ALL: [Self; 19] = [
3323        // any changes here should also be reflected in `PrimTy::from_name`
3324        Self::Int(IntTy::I8),
3325        Self::Int(IntTy::I16),
3326        Self::Int(IntTy::I32),
3327        Self::Int(IntTy::I64),
3328        Self::Int(IntTy::I128),
3329        Self::Int(IntTy::Isize),
3330        Self::Uint(UintTy::U8),
3331        Self::Uint(UintTy::U16),
3332        Self::Uint(UintTy::U32),
3333        Self::Uint(UintTy::U64),
3334        Self::Uint(UintTy::U128),
3335        Self::Uint(UintTy::Usize),
3336        Self::Float(FloatTy::F16),
3337        Self::Float(FloatTy::F32),
3338        Self::Float(FloatTy::F64),
3339        Self::Float(FloatTy::F128),
3340        Self::Bool,
3341        Self::Char,
3342        Self::Str,
3343    ];
3344
3345    /// Like [`PrimTy::name`], but returns a &str instead of a symbol.
3346    ///
3347    /// Used by clippy.
3348    pub fn name_str(self) -> &'static str {
3349        match self {
3350            PrimTy::Int(i) => i.name_str(),
3351            PrimTy::Uint(u) => u.name_str(),
3352            PrimTy::Float(f) => f.name_str(),
3353            PrimTy::Str => "str",
3354            PrimTy::Bool => "bool",
3355            PrimTy::Char => "char",
3356        }
3357    }
3358
3359    pub fn name(self) -> Symbol {
3360        match self {
3361            PrimTy::Int(i) => i.name(),
3362            PrimTy::Uint(u) => u.name(),
3363            PrimTy::Float(f) => f.name(),
3364            PrimTy::Str => sym::str,
3365            PrimTy::Bool => sym::bool,
3366            PrimTy::Char => sym::char,
3367        }
3368    }
3369
3370    /// Returns the matching `PrimTy` for a `Symbol` such as "str" or "i32".
3371    /// Returns `None` if no matching type is found.
3372    pub fn from_name(name: Symbol) -> Option<Self> {
3373        let ty = match name {
3374            // any changes here should also be reflected in `PrimTy::ALL`
3375            sym::i8 => Self::Int(IntTy::I8),
3376            sym::i16 => Self::Int(IntTy::I16),
3377            sym::i32 => Self::Int(IntTy::I32),
3378            sym::i64 => Self::Int(IntTy::I64),
3379            sym::i128 => Self::Int(IntTy::I128),
3380            sym::isize => Self::Int(IntTy::Isize),
3381            sym::u8 => Self::Uint(UintTy::U8),
3382            sym::u16 => Self::Uint(UintTy::U16),
3383            sym::u32 => Self::Uint(UintTy::U32),
3384            sym::u64 => Self::Uint(UintTy::U64),
3385            sym::u128 => Self::Uint(UintTy::U128),
3386            sym::usize => Self::Uint(UintTy::Usize),
3387            sym::f16 => Self::Float(FloatTy::F16),
3388            sym::f32 => Self::Float(FloatTy::F32),
3389            sym::f64 => Self::Float(FloatTy::F64),
3390            sym::f128 => Self::Float(FloatTy::F128),
3391            sym::bool => Self::Bool,
3392            sym::char => Self::Char,
3393            sym::str => Self::Str,
3394            _ => return None,
3395        };
3396        Some(ty)
3397    }
3398}
3399
3400#[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)]
3401pub struct FnPtrTy<'hir> {
3402    pub safety: Safety,
3403    pub abi: ExternAbi,
3404    pub generic_params: &'hir [GenericParam<'hir>],
3405    pub decl: &'hir FnDecl<'hir>,
3406    // `Option` because bare fn parameter identifiers are optional. We also end up
3407    // with `None` in some error cases, e.g. invalid parameter patterns.
3408    pub param_idents: &'hir [Option<Ident>],
3409}
3410
3411#[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)]
3412pub struct UnsafeBinderTy<'hir> {
3413    pub generic_params: &'hir [GenericParam<'hir>],
3414    pub inner_ty: &'hir Ty<'hir>,
3415}
3416
3417#[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)]
3418pub struct OpaqueTy<'hir> {
3419    #[stable_hash(ignore)]
3420    pub hir_id: HirId,
3421    pub def_id: LocalDefId,
3422    pub bounds: GenericBounds<'hir>,
3423    pub origin: OpaqueTyOrigin<LocalDefId>,
3424    pub span: Span,
3425}
3426
3427#[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)]
3428pub enum PreciseCapturingArgKind<T, U> {
3429    Lifetime(T),
3430    /// Non-lifetime argument (type or const)
3431    Param(U),
3432}
3433
3434pub type PreciseCapturingArg<'hir> =
3435    PreciseCapturingArgKind<&'hir Lifetime, PreciseCapturingNonLifetimeArg>;
3436
3437impl PreciseCapturingArg<'_> {
3438    pub fn hir_id(self) -> HirId {
3439        match self {
3440            PreciseCapturingArg::Lifetime(lt) => lt.hir_id,
3441            PreciseCapturingArg::Param(param) => param.hir_id,
3442        }
3443    }
3444
3445    pub fn name(self) -> Symbol {
3446        match self {
3447            PreciseCapturingArg::Lifetime(lt) => lt.ident.name,
3448            PreciseCapturingArg::Param(param) => param.ident.name,
3449        }
3450    }
3451}
3452
3453/// We need to have a [`Node`] for the [`HirId`] that we attach the type/const param
3454/// resolution to. Lifetimes don't have this problem, and for them, it's actually
3455/// kind of detrimental to use a custom node type versus just using [`Lifetime`],
3456/// since resolve_bound_vars operates on `Lifetime`s.
3457#[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)]
3458pub struct PreciseCapturingNonLifetimeArg {
3459    #[stable_hash(ignore)]
3460    pub hir_id: HirId,
3461    pub ident: Ident,
3462    pub res: Res,
3463}
3464
3465#[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)]
3466#[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)]
3467pub enum RpitContext {
3468    Trait,
3469    TraitImpl,
3470}
3471
3472/// From whence the opaque type came.
3473#[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)]
3474#[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)]
3475pub enum OpaqueTyOrigin<D> {
3476    /// `-> impl Trait`
3477    FnReturn {
3478        /// The defining function.
3479        parent: D,
3480        // Whether this is an RPITIT (return position impl trait in trait)
3481        in_trait_or_impl: Option<RpitContext>,
3482    },
3483    /// `async fn`
3484    AsyncFn {
3485        /// The defining function.
3486        parent: D,
3487        // Whether this is an AFIT (async fn in trait)
3488        in_trait_or_impl: Option<RpitContext>,
3489    },
3490    /// type aliases: `type Foo = impl Trait;`
3491    TyAlias {
3492        /// The type alias or associated type parent of the TAIT/ATPIT
3493        parent: D,
3494        /// associated types in impl blocks for traits.
3495        in_assoc_ty: bool,
3496    },
3497}
3498
3499#[derive(#[automatically_derived]
impl ::core::fmt::Debug for DelegationSelfTyPropagationKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            DelegationSelfTyPropagationKind::SelfTy(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "SelfTy",
                    &__self_0),
            DelegationSelfTyPropagationKind::SelfParam =>
                ::core::fmt::Formatter::write_str(f, "SelfParam"),
        }
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for DelegationSelfTyPropagationKind {
    #[inline]
    fn clone(&self) -> DelegationSelfTyPropagationKind {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for DelegationSelfTyPropagationKind { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for DelegationSelfTyPropagationKind {
    #[inline]
    fn eq(&self, other: &DelegationSelfTyPropagationKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (DelegationSelfTyPropagationKind::SelfTy(__self_0),
                    DelegationSelfTyPropagationKind::SelfTy(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for DelegationSelfTyPropagationKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<HirId>;
    }
}Eq, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            DelegationSelfTyPropagationKind {
            #[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 {
                    DelegationSelfTyPropagationKind::SelfTy(ref __binding_0) =>
                        {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    DelegationSelfTyPropagationKind::SelfParam => {}
                }
            }
        }
    };StableHash)]
3500pub enum DelegationSelfTyPropagationKind {
3501    /// Used when self type is explicitly specified in free-to-trait reuse
3502    /// `reuse <() as Trait>::foo;`.
3503    SelfTy(HirId /* Self ty id */),
3504    /// Used when infer instead of a self type is specified or self type
3505    /// is not specified at all: `reuse Trait::foo; reuse <_ as Trait>::foo;`.
3506    SelfParam,
3507}
3508
3509#[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", "child_seg_id",
                        "parent_seg_id_for_sig", "child_seg_id_for_sig",
                        "self_ty_propagation_kind", "group_id", "arguments_to_map"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.call_expr_id, &self.call_path_res, &self.child_seg_id,
                        &self.parent_seg_id_for_sig, &self.child_seg_id_for_sig,
                        &self.self_ty_propagation_kind, &self.group_id,
                        &&self.arguments_to_map];
        ::core::fmt::Formatter::debug_struct_fields_finish(f,
            "DelegationInfo", names, values)
    }
}Debug, 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,
                        child_seg_id: ref __binding_2,
                        parent_seg_id_for_sig: ref __binding_3,
                        child_seg_id_for_sig: ref __binding_4,
                        self_ty_propagation_kind: ref __binding_5,
                        group_id: ref __binding_6,
                        arguments_to_map: 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); }
                    }
                }
            }
        }
    };StableHash)]
3510pub struct DelegationInfo {
3511    pub call_expr_id: HirId,
3512    pub call_path_res: DefId,
3513
3514    /// Id of the child segment in delegation: `reuse Trait::foo`,
3515    /// `child_seg_id` points to `foo`.
3516    pub child_seg_id: HirId,
3517
3518    /// Ids of parent and child segments, `Some` when we need to take
3519    /// generic args of those segments for signature/predicates inheritance.
3520    /// `None` in trait impl case or when error delegation is generated, meaning
3521    /// we should not access those segments for generic args lowering.
3522    /// When `child_seg_id_for_sig` is Some it always equals `child_seg_id`.
3523    pub parent_seg_id_for_sig: Option<HirId>,
3524    pub child_seg_id_for_sig: Option<HirId>,
3525
3526    pub self_ty_propagation_kind: Option<DelegationSelfTyPropagationKind>,
3527    pub group_id: Option<(LocalExpnId, bool /* unused_target_expr */)>,
3528
3529    pub arguments_to_map: FxIndexSet<usize>,
3530}
3531
3532#[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, 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)]
3533pub enum InferDelegationSig<'hir> {
3534    Input(usize),
3535    // Place delegation info here, as we always specify output type for delegations.
3536    Output(&'hir DelegationInfo),
3537}
3538
3539#[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, 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)]
3540pub enum InferDelegation<'hir> {
3541    /// Infer the type of this `DefId` through `tcx.type_of(def_id).instantiate_identity()`,
3542    /// used for const types propagation.
3543    DefId(DefId),
3544    /// Used during signature inheritance, `DefId` corresponds to the signature function.
3545    Sig(DefId, InferDelegationSig<'hir>),
3546}
3547
3548/// The various kinds of types recognized by the compiler.
3549///
3550/// For an explanation of the `Unambig` generic parameter see the dev-guide:
3551/// <https://rustc-dev-guide.rust-lang.org/ambig-unambig-ty-and-consts.html>
3552// SAFETY: `repr(u8)` is required so that `TyKind<()>` and `TyKind<!>` are layout compatible
3553#[repr(u8, C)]
3554#[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::View(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "View",
                    __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::View(__self_0, __self_1) =>
                TyKind::View(::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::View(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)]
3555pub enum TyKind<'hir, Unambig = ()> {
3556    /// Actual type should be inherited from `DefId` signature
3557    InferDelegation(InferDelegation<'hir>),
3558    /// A variable length slice (i.e., `[T]`).
3559    Slice(&'hir Ty<'hir>),
3560    /// A fixed length array (i.e., `[T; n]`).
3561    Array(&'hir Ty<'hir>, &'hir ConstArg<'hir>),
3562    /// A raw pointer (i.e., `*const T` or `*mut T`).
3563    Ptr(MutTy<'hir>),
3564    /// A reference (i.e., `&'a T` or `&'a mut T`).
3565    Ref(&'hir Lifetime, MutTy<'hir>),
3566    /// A function pointer (e.g., `fn(usize) -> bool`).
3567    FnPtr(&'hir FnPtrTy<'hir>),
3568    /// An unsafe binder type (e.g. `unsafe<'a> Foo<'a>`).
3569    UnsafeBinder(&'hir UnsafeBinderTy<'hir>),
3570    /// The never type (`!`).
3571    Never,
3572    /// A tuple (`(A, B, C, D, ...)`).
3573    Tup(&'hir [Ty<'hir>]),
3574    /// A path to a type definition (`module::module::...::Type`), or an
3575    /// associated type (e.g., `<Vec<T> as Trait>::Type` or `<T>::Target`).
3576    ///
3577    /// Type parameters may be stored in each `PathSegment`.
3578    Path(QPath<'hir>),
3579    /// An opaque type definition itself. This is only used for `impl Trait`.
3580    OpaqueDef(&'hir OpaqueTy<'hir>),
3581    /// A trait ascription type, which is `impl Trait` within a local binding.
3582    TraitAscription(GenericBounds<'hir>),
3583    /// A trait object type `Bound1 + Bound2 + Bound3`
3584    /// where `Bound` is a trait or a lifetime.
3585    ///
3586    /// We use pointer tagging to represent a `&'hir Lifetime` and `TraitObjectSyntax` pair
3587    /// as otherwise this type being `repr(C)` would result in `TyKind` increasing in size.
3588    TraitObject(&'hir [PolyTraitRef<'hir>], TaggedRef<'hir, Lifetime, TraitObjectSyntax>),
3589    /// Placeholder for a type that has failed to be defined.
3590    Err(rustc_span::ErrorGuaranteed),
3591    /// Pattern types (`pattern_type!(u32 is 1..)`)
3592    Pat(&'hir Ty<'hir>, &'hir TyPat<'hir>),
3593    /// Field representing type (`field_of!(Struct, field)`).
3594    ///
3595    /// The optional ident is the variant when an enum is passed `field_of!(Enum, Variant.field)`.
3596    FieldOf(&'hir Ty<'hir>, &'hir TyFieldPath),
3597    /// A view of a type. `T.{ field_1, field_2 }`.
3598    View(&'hir Ty<'hir>, &'hir [Ident]),
3599    /// `TyKind::Infer` means the type should be inferred instead of it having been
3600    /// specified. This can appear anywhere in a type.
3601    ///
3602    /// This variant is not always used to represent inference types, sometimes
3603    /// [`GenericArg::Infer`] is used instead.
3604    Infer(Unambig),
3605}
3606
3607#[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)]
3608pub enum InlineAsmOperand<'hir> {
3609    In {
3610        reg: InlineAsmRegOrRegClass,
3611        expr: &'hir Expr<'hir>,
3612    },
3613    Out {
3614        reg: InlineAsmRegOrRegClass,
3615        late: bool,
3616        expr: Option<&'hir Expr<'hir>>,
3617    },
3618    InOut {
3619        reg: InlineAsmRegOrRegClass,
3620        late: bool,
3621        expr: &'hir Expr<'hir>,
3622    },
3623    SplitInOut {
3624        reg: InlineAsmRegOrRegClass,
3625        late: bool,
3626        in_expr: &'hir Expr<'hir>,
3627        out_expr: Option<&'hir Expr<'hir>>,
3628    },
3629    Const {
3630        anon_const: ConstBlock,
3631    },
3632    SymFn {
3633        expr: &'hir Expr<'hir>,
3634    },
3635    SymStatic {
3636        path: QPath<'hir>,
3637        def_id: DefId,
3638    },
3639    Label {
3640        block: &'hir Block<'hir>,
3641    },
3642}
3643
3644impl<'hir> InlineAsmOperand<'hir> {
3645    pub fn reg(&self) -> Option<InlineAsmRegOrRegClass> {
3646        match *self {
3647            Self::In { reg, .. }
3648            | Self::Out { reg, .. }
3649            | Self::InOut { reg, .. }
3650            | Self::SplitInOut { reg, .. } => Some(reg),
3651            Self::Const { .. }
3652            | Self::SymFn { .. }
3653            | Self::SymStatic { .. }
3654            | Self::Label { .. } => None,
3655        }
3656    }
3657
3658    pub fn is_clobber(&self) -> bool {
3659        #[allow(non_exhaustive_omitted_patterns)] match self {
    InlineAsmOperand::Out {
        reg: InlineAsmRegOrRegClass::Reg(_), late: _, expr: None } => true,
    _ => false,
}matches!(
3660            self,
3661            InlineAsmOperand::Out { reg: InlineAsmRegOrRegClass::Reg(_), late: _, expr: None }
3662        )
3663    }
3664}
3665
3666#[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)]
3667pub struct InlineAsm<'hir> {
3668    pub asm_macro: ast::AsmMacro,
3669    pub template: &'hir [InlineAsmTemplatePiece],
3670    pub template_strs: &'hir [(Symbol, Option<Symbol>, Span)],
3671    pub operands: &'hir [(InlineAsmOperand<'hir>, Span)],
3672    pub options: InlineAsmOptions,
3673    pub line_spans: &'hir [Span],
3674}
3675
3676impl InlineAsm<'_> {
3677    pub fn contains_label(&self) -> bool {
3678        self.operands.iter().any(|x| #[allow(non_exhaustive_omitted_patterns)] match x.0 {
    InlineAsmOperand::Label { .. } => true,
    _ => false,
}matches!(x.0, InlineAsmOperand::Label { .. }))
3679    }
3680}
3681
3682/// Represents a parameter in a function header.
3683#[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)]
3684pub struct Param<'hir> {
3685    #[stable_hash(ignore)]
3686    pub hir_id: HirId,
3687    pub pat: &'hir Pat<'hir>,
3688    pub ty_span: Span,
3689    pub span: Span,
3690}
3691
3692/// Error type for splatted argument index errors.
3693#[derive(#[automatically_derived]
impl ::core::fmt::Debug for SplattedArgIndexError {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            SplattedArgIndexError::InvalidIndex { splatted_arg_index: __self_0
                } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "InvalidIndex", "splatted_arg_index", &__self_0),
            SplattedArgIndexError::OutOfBounds {
                splatted_arg_index: __self_0, args_len: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "OutOfBounds", "splatted_arg_index", __self_0, "args_len",
                    &__self_1),
        }
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for SplattedArgIndexError {
    #[inline]
    fn clone(&self) -> SplattedArgIndexError {
        let _: ::core::clone::AssertParamIsClone<u8>;
        let _: ::core::clone::AssertParamIsClone<u16>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for SplattedArgIndexError { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for SplattedArgIndexError {
    #[inline]
    fn eq(&self, other: &SplattedArgIndexError) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (SplattedArgIndexError::InvalidIndex {
                    splatted_arg_index: __self_0 },
                    SplattedArgIndexError::InvalidIndex {
                    splatted_arg_index: __arg1_0 }) => __self_0 == __arg1_0,
                (SplattedArgIndexError::OutOfBounds {
                    splatted_arg_index: __self_0, args_len: __self_1 },
                    SplattedArgIndexError::OutOfBounds {
                    splatted_arg_index: __arg1_0, args_len: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for SplattedArgIndexError {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<u8>;
        let _: ::core::cmp::AssertParamIsEq<u16>;
    }
}Eq)]
3694pub enum SplattedArgIndexError {
3695    /// The splatted argument index is invalid.
3696    /// A `u8::MAX` argument index used to indicate that no argument is splatted.
3697    /// Higher values are also not supported, for performance reasons.
3698    InvalidIndex { splatted_arg_index: u8 },
3699
3700    /// The splatted argument index is outside the bounds of the function arguments.
3701    OutOfBounds { splatted_arg_index: u8, args_len: u16 },
3702}
3703
3704/// Contains the packed non-type fields of a function declaration.
3705#[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 && self.splatted == other.splatted
    }
}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 {
        match ::core::cmp::Ord::cmp(&self.flags, &other.flags) {
            ::core::cmp::Ordering::Equal =>
                ::core::cmp::Ord::cmp(&self.splatted, &other.splatted),
            cmp => cmp,
        }
    }
}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);
        ::core::hash::Hash::hash(&self.splatted, state)
    }
}Hash)]
3706#[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, splatted: 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 FnDeclFlags {
            fn decode(__decoder: &mut __D) -> Self {
                FnDeclFlags {
                    flags: ::rustc_serialize::Decodable::decode(__decoder),
                    splatted: ::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, splatted: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
3707pub struct FnDeclFlags {
3708    /// Holds the c_variadic and lifetime_elision_allowed bitflags, and 3 bits for the `ImplicitSelfKind`.
3709    flags: u8,
3710
3711    /// Which function argument is splatted into multiple arguments in callers, if any?
3712    /// Splatting functions with `>= u8::MAX` arguments is not supported, see `FnSigKind` for
3713    /// details.
3714    splatted: u8,
3715}
3716
3717impl fmt::Debug for FnDeclFlags {
3718    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
3719        let mut f = f.debug_tuple("FnDeclFlags");
3720        f.field(&::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("ImplicitSelfKind({0:?})",
                self.implicit_self()))
    })format!("ImplicitSelfKind({:?})", self.implicit_self()));
3721
3722        if self.lifetime_elision_allowed() {
3723            f.field(&"LifetimeElisionAllowed");
3724        } else {
3725            f.field(&"NoLifetimeElision");
3726        }
3727
3728        if self.c_variadic() {
3729            f.field(&"CVariadic");
3730        }
3731
3732        if let Some(index) = self.splatted() {
3733            f.field(&::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("Splatted({0})", index))
    })format!("Splatted({})", index));
3734        }
3735
3736        f.finish()
3737    }
3738}
3739
3740impl FnDeclFlags {
3741    /// Mask for the implicit self kind.
3742    const IMPLICIT_SELF_MASK: u8 = 0b111;
3743
3744    /// Bitflag for a trailing C-style variadic argument.
3745    const C_VARIADIC_FLAG: u8 = 1 << 3;
3746
3747    /// Bitflag for lifetime elision.
3748    const LIFETIME_ELISION_ALLOWED_FLAG: u8 = 1 << 4;
3749
3750    /// Marker index for "no splatted argument".
3751    /// Must have the same value as `FnSigKind::NO_SPLATTED_ARG_INDEX` and `rustc_ast::FnDecl::NO_SPLATTED_ARG_INDEX`.
3752    const NO_SPLATTED_ARG_INDEX: u8 = u8::MAX;
3753
3754    /// Create a new FnDeclKind with no implicit self, no lifetime elision, no C-style variadic
3755    /// argument, and no splatting.
3756    /// To modify these flags, use the `set_*` methods, for readability.
3757    // FIXME: use Default instead when that trait is const stable.
3758    pub fn default() -> Self {
3759        Self { flags: 0, splatted: 0 }
3760            .set_implicit_self(ImplicitSelfKind::None)
3761            .set_lifetime_elision_allowed(false)
3762            .set_c_variadic(false)
3763            .set_no_splatted_args()
3764    }
3765
3766    /// Set the implicit self kind.
3767    #[must_use = "this method does not modify the receiver"]
3768    pub fn set_implicit_self(mut self, implicit_self: ImplicitSelfKind) -> Self {
3769        self.flags &= !Self::IMPLICIT_SELF_MASK;
3770
3771        match implicit_self {
3772            ImplicitSelfKind::None => self.flags |= 0,
3773            ImplicitSelfKind::Imm => self.flags |= 1,
3774            ImplicitSelfKind::Mut => self.flags |= 2,
3775            ImplicitSelfKind::RefImm => self.flags |= 3,
3776            ImplicitSelfKind::RefMut => self.flags |= 4,
3777        }
3778
3779        self
3780    }
3781
3782    /// Set the C-style variadic argument flag.
3783    #[must_use = "this method does not modify the receiver"]
3784    pub fn set_c_variadic(mut self, c_variadic: bool) -> Self {
3785        if c_variadic {
3786            self.flags |= Self::C_VARIADIC_FLAG;
3787        } else {
3788            self.flags &= !Self::C_VARIADIC_FLAG;
3789        }
3790
3791        self
3792    }
3793
3794    /// Set the lifetime elision allowed flag.
3795    #[must_use = "this method does not modify the receiver"]
3796    pub fn set_lifetime_elision_allowed(mut self, allowed: bool) -> Self {
3797        if allowed {
3798            self.flags |= Self::LIFETIME_ELISION_ALLOWED_FLAG;
3799        } else {
3800            self.flags &= !Self::LIFETIME_ELISION_ALLOWED_FLAG;
3801        }
3802
3803        self
3804    }
3805
3806    /// Set the splatted argument index.
3807    /// The number of function arguments is used for error checking.
3808    #[must_use = "this method does not modify the receiver"]
3809    pub fn set_splatted(
3810        mut self,
3811        splatted: Option<u8>,
3812        args_len: usize,
3813    ) -> Result<Self, SplattedArgIndexError> {
3814        if let Some(splatted_arg_index) = splatted {
3815            if splatted_arg_index == Self::NO_SPLATTED_ARG_INDEX {
3816                // This index value is used as a marker for "no splatting", so it is unsupported.
3817                // Higher values are also not supported, for performance reasons.
3818                return Err(SplattedArgIndexError::InvalidIndex { splatted_arg_index });
3819            } else if usize::from(splatted_arg_index) >= args_len {
3820                return Err(SplattedArgIndexError::OutOfBounds {
3821                    splatted_arg_index,
3822                    args_len: args_len as u16,
3823                });
3824            }
3825
3826            self.splatted = splatted_arg_index;
3827        } else {
3828            self.splatted = Self::NO_SPLATTED_ARG_INDEX;
3829        }
3830
3831        Ok(self)
3832    }
3833
3834    /// Set "no splatted arguments" for the function declaration.
3835    #[must_use = "this method does not modify the receiver"]
3836    pub fn set_no_splatted_args(mut self) -> Self {
3837        self.splatted = Self::NO_SPLATTED_ARG_INDEX;
3838
3839        self
3840    }
3841
3842    /// Get the implicit self kind.
3843    pub fn implicit_self(self) -> ImplicitSelfKind {
3844        match self.flags & Self::IMPLICIT_SELF_MASK {
3845            0 => ImplicitSelfKind::None,
3846            1 => ImplicitSelfKind::Imm,
3847            2 => ImplicitSelfKind::Mut,
3848            3 => ImplicitSelfKind::RefImm,
3849            4 => ImplicitSelfKind::RefMut,
3850            _ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
3851        }
3852    }
3853
3854    /// Do the function arguments end with a C-style variadic argument?
3855    pub fn c_variadic(self) -> bool {
3856        self.flags & Self::C_VARIADIC_FLAG != 0
3857    }
3858
3859    /// Is lifetime elision allowed?
3860    pub fn lifetime_elision_allowed(self) -> bool {
3861        self.flags & Self::LIFETIME_ELISION_ALLOWED_FLAG != 0
3862    }
3863
3864    /// Get the splatted argument index, if any.
3865    pub fn splatted(self) -> Option<u8> {
3866        if self.splatted == Self::NO_SPLATTED_ARG_INDEX { None } else { Some(self.splatted) }
3867    }
3868}
3869
3870/// Represents the header (not the body) of a function declaration.
3871#[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)]
3872pub struct FnDecl<'hir> {
3873    /// The types of the function's parameters.
3874    ///
3875    /// Additional argument data is stored in the function's [body](Body::params).
3876    pub inputs: &'hir [Ty<'hir>],
3877    pub output: FnRetTy<'hir>,
3878    /// The packed function declaration attributes.
3879    pub fn_decl_kind: FnDeclFlags,
3880}
3881
3882impl<'hir> FnDecl<'hir> {
3883    pub fn opt_delegation_sig_id(&self) -> Option<DefId> {
3884        if let FnRetTy::Return(ty) = self.output
3885            && let TyKind::InferDelegation(InferDelegation::Sig(sig_id, _)) = ty.kind
3886        {
3887            return Some(sig_id);
3888        }
3889        None
3890    }
3891
3892    pub fn opt_delegation_info(&self) -> Option<&'hir DelegationInfo> {
3893        if let FnRetTy::Return(ty) = self.output
3894            && let TyKind::InferDelegation(InferDelegation::Sig(_, kind)) = ty.kind
3895            && let InferDelegationSig::Output(generics) = kind
3896        {
3897            return Some(generics);
3898        }
3899
3900        None
3901    }
3902
3903    pub fn implicit_self(&self) -> ImplicitSelfKind {
3904        self.fn_decl_kind.implicit_self()
3905    }
3906
3907    pub fn c_variadic(&self) -> bool {
3908        self.fn_decl_kind.c_variadic()
3909    }
3910
3911    pub fn lifetime_elision_allowed(&self) -> bool {
3912        self.fn_decl_kind.lifetime_elision_allowed()
3913    }
3914
3915    pub fn splatted(&self) -> Option<u8> {
3916        self.fn_decl_kind.splatted()
3917    }
3918
3919    pub fn dummy(span: Span) -> Self {
3920        Self {
3921            inputs: &[],
3922            output: FnRetTy::DefaultReturn(span),
3923            fn_decl_kind: FnDeclFlags::default().set_lifetime_elision_allowed(true),
3924        }
3925    }
3926}
3927
3928/// Represents what type of implicit self a function has, if any.
3929#[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)]
3930pub enum ImplicitSelfKind {
3931    /// Represents a `fn x(self);`.
3932    Imm,
3933    /// Represents a `fn x(mut self);`.
3934    Mut,
3935    /// Represents a `fn x(&self);`.
3936    RefImm,
3937    /// Represents a `fn x(&mut self);`.
3938    RefMut,
3939    /// Represents when a function does not have a self argument or
3940    /// when a function has a `self: X` argument.
3941    None,
3942}
3943
3944impl ImplicitSelfKind {
3945    /// Does this represent an implicit self?
3946    pub fn has_implicit_self(&self) -> bool {
3947        !#[allow(non_exhaustive_omitted_patterns)] match *self {
    ImplicitSelfKind::None => true,
    _ => false,
}matches!(*self, ImplicitSelfKind::None)
3948    }
3949}
3950
3951#[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)]
3952pub enum IsAsync {
3953    Async(Span),
3954    NotAsync,
3955}
3956
3957impl IsAsync {
3958    pub fn is_async(self) -> bool {
3959        #[allow(non_exhaustive_omitted_patterns)] match self {
    IsAsync::Async(_) => true,
    _ => false,
}matches!(self, IsAsync::Async(_))
3960    }
3961}
3962
3963#[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)]
3964#[derive(#[automatically_derived]
impl ::core::default::Default for Defaultness {
    #[inline]
    fn default() -> Defaultness { Self::Final }
}Default)]
3965pub enum Defaultness {
3966    Default {
3967        has_value: bool,
3968    },
3969    #[default]
3970    Final,
3971}
3972
3973impl Defaultness {
3974    pub fn has_value(&self) -> bool {
3975        match *self {
3976            Defaultness::Default { has_value } => has_value,
3977            Defaultness::Final => true,
3978        }
3979    }
3980
3981    pub fn is_final(&self) -> bool {
3982        *self == Defaultness::Final
3983    }
3984
3985    pub fn is_default(&self) -> bool {
3986        #[allow(non_exhaustive_omitted_patterns)] match *self {
    Defaultness::Default { .. } => true,
    _ => false,
}matches!(*self, Defaultness::Default { .. })
3987    }
3988}
3989
3990#[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)]
3991pub enum FnRetTy<'hir> {
3992    /// Return type is not specified.
3993    ///
3994    /// Functions default to `()` and
3995    /// closures default to inference. Span points to where return
3996    /// type would be inserted.
3997    DefaultReturn(Span),
3998    /// Everything else.
3999    Return(&'hir Ty<'hir>),
4000}
4001
4002impl<'hir> FnRetTy<'hir> {
4003    #[inline]
4004    pub fn span(&self) -> Span {
4005        match *self {
4006            Self::DefaultReturn(span) => span,
4007            Self::Return(ref ty) => ty.span,
4008        }
4009    }
4010
4011    pub fn is_suggestable_infer_ty(&self) -> Option<&'hir Ty<'hir>> {
4012        if let Self::Return(ty) = self
4013            && ty.is_suggestable_infer_ty()
4014        {
4015            return Some(*ty);
4016        }
4017        None
4018    }
4019}
4020
4021/// Represents `for<...>` binder before a closure
4022#[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)]
4023pub enum ClosureBinder {
4024    /// Binder is not specified.
4025    Default,
4026    /// Binder is specified.
4027    ///
4028    /// Span points to the whole `for<...>`.
4029    For { span: Span },
4030}
4031
4032#[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)]
4033pub struct Mod<'hir> {
4034    pub spans: ModSpans,
4035    pub item_ids: &'hir [ItemId],
4036}
4037
4038#[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)]
4039pub struct ModSpans {
4040    /// A span from the first token past `{` to the last token until `}`.
4041    /// For `mod foo;`, the inner span ranges from the first token
4042    /// to the last token in the external file.
4043    pub inner_span: Span,
4044    pub inject_use_span: Span,
4045}
4046
4047#[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)]
4048pub struct EnumDef<'hir> {
4049    pub variants: &'hir [Variant<'hir>],
4050}
4051
4052#[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)]
4053pub struct Variant<'hir> {
4054    /// Name of the variant.
4055    pub ident: Ident,
4056    /// Id of the variant (not the constructor, see `VariantData::ctor_hir_id()`).
4057    #[stable_hash(ignore)]
4058    pub hir_id: HirId,
4059    pub def_id: LocalDefId,
4060    /// Fields and constructor id of the variant.
4061    pub data: VariantData<'hir>,
4062    /// Explicit discriminant (e.g., `Foo = 1`).
4063    pub disr_expr: Option<&'hir AnonConst>,
4064    /// Span
4065    pub span: Span,
4066}
4067
4068#[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)]
4069pub enum UseKind {
4070    /// One import, e.g., `use foo::bar` or `use foo::bar as baz`.
4071    /// Also produced for each element of a list `use`, e.g.
4072    /// `use foo::{a, b}` lowers to `use foo::a; use foo::b;`.
4073    ///
4074    /// The identifier is the name defined by the import. E.g. for `use
4075    /// foo::bar` it is `bar`, for `use foo::bar as baz` it is `baz`.
4076    Single(Ident),
4077
4078    /// Glob import, e.g., `use foo::*`.
4079    Glob,
4080
4081    /// Degenerate list import, e.g., `use foo::{a, b}` produces
4082    /// an additional `use foo::{}` for performing checks such as
4083    /// unstable feature gating. May be removed in the future.
4084    ListStem,
4085}
4086
4087/// References to traits in impls.
4088///
4089/// `resolve` maps each `TraitRef`'s `ref_id` to its defining trait; that's all
4090/// that the `ref_id` is for. Note that `ref_id`'s value is not the `HirId` of the
4091/// trait being referred to but just a unique `HirId` that serves as a key
4092/// within the resolution map.
4093#[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)]
4094pub struct TraitRef<'hir> {
4095    pub path: &'hir Path<'hir>,
4096    // Don't hash the `ref_id`. It is tracked via the thing it is used to access.
4097    #[stable_hash(ignore)]
4098    pub hir_ref_id: HirId,
4099}
4100
4101impl TraitRef<'_> {
4102    /// Gets the `DefId` of the referenced trait. It _must_ actually be a trait or trait alias.
4103    pub fn trait_def_id(&self) -> Option<DefId> {
4104        match self.path.res {
4105            Res::Def(DefKind::Trait | DefKind::TraitAlias, did) => Some(did),
4106            Res::Err => None,
4107            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"),
4108        }
4109    }
4110}
4111
4112#[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)]
4113pub struct PolyTraitRef<'hir> {
4114    /// The `'a` in `for<'a> Foo<&'a T>`.
4115    pub bound_generic_params: &'hir [GenericParam<'hir>],
4116
4117    /// The constness and polarity of the trait ref.
4118    ///
4119    /// The `async` modifier is lowered directly into a different trait for now.
4120    pub modifiers: TraitBoundModifiers,
4121
4122    /// The `Foo<&'a T>` in `for<'a> Foo<&'a T>`.
4123    pub trait_ref: TraitRef<'hir>,
4124
4125    pub span: Span,
4126}
4127
4128#[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", "mut_restriction", "ident", "hir_id",
                        "def_id", "ty", "safety", "default"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.span, &self.vis_span, &self.mut_restriction, &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<&'hir MutRestriction<'hir>>;
        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,
                        mut_restriction: ref __binding_2,
                        ident: ref __binding_3,
                        hir_id: ref __binding_4,
                        def_id: ref __binding_5,
                        ty: ref __binding_6,
                        safety: ref __binding_7,
                        default: ref __binding_8 } => {
                        { __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_5.stable_hash(__hcx, __hasher); }
                        { __binding_6.stable_hash(__hcx, __hasher); }
                        { __binding_7.stable_hash(__hcx, __hasher); }
                        { __binding_8.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4129pub struct FieldDef<'hir> {
4130    pub span: Span,
4131    pub vis_span: Span,
4132    pub mut_restriction: &'hir MutRestriction<'hir>,
4133    pub ident: Ident,
4134    #[stable_hash(ignore)]
4135    pub hir_id: HirId,
4136    pub def_id: LocalDefId,
4137    pub ty: &'hir Ty<'hir>,
4138    pub safety: Safety,
4139    pub default: Option<&'hir AnonConst>,
4140}
4141
4142impl FieldDef<'_> {
4143    // Still necessary in couple of places
4144    pub fn is_positional(&self) -> bool {
4145        self.ident.as_str().as_bytes()[0].is_ascii_digit()
4146    }
4147}
4148
4149/// Fields and constructor IDs of enum variants and structs.
4150#[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)]
4151pub enum VariantData<'hir> {
4152    /// A struct variant.
4153    ///
4154    /// E.g., `Bar { .. }` as in `enum Foo { Bar { .. } }`.
4155    Struct { fields: &'hir [FieldDef<'hir>], recovered: ast::Recovered },
4156    /// A tuple variant.
4157    ///
4158    /// E.g., `Bar(..)` as in `enum Foo { Bar(..) }`.
4159    Tuple(&'hir [FieldDef<'hir>], #[stable_hash(ignore)] HirId, LocalDefId),
4160    /// A unit variant.
4161    ///
4162    /// E.g., `Bar = ..` as in `enum Foo { Bar = .. }`.
4163    Unit(#[stable_hash(ignore)] HirId, LocalDefId),
4164}
4165
4166impl<'hir> VariantData<'hir> {
4167    /// Return the fields of this variant.
4168    pub fn fields(&self) -> &'hir [FieldDef<'hir>] {
4169        match *self {
4170            VariantData::Struct { fields, .. } | VariantData::Tuple(fields, ..) => fields,
4171            _ => &[],
4172        }
4173    }
4174
4175    pub fn ctor(&self) -> Option<(CtorKind, HirId, LocalDefId)> {
4176        match *self {
4177            VariantData::Tuple(_, hir_id, def_id) => Some((CtorKind::Fn, hir_id, def_id)),
4178            VariantData::Unit(hir_id, def_id) => Some((CtorKind::Const, hir_id, def_id)),
4179            VariantData::Struct { .. } => None,
4180        }
4181    }
4182
4183    #[inline]
4184    pub fn ctor_kind(&self) -> Option<CtorKind> {
4185        self.ctor().map(|(kind, ..)| kind)
4186    }
4187
4188    /// Return the `HirId` of this variant's constructor, if it has one.
4189    #[inline]
4190    pub fn ctor_hir_id(&self) -> Option<HirId> {
4191        self.ctor().map(|(_, hir_id, _)| hir_id)
4192    }
4193
4194    /// Return the `LocalDefId` of this variant's constructor, if it has one.
4195    #[inline]
4196    pub fn ctor_def_id(&self) -> Option<LocalDefId> {
4197        self.ctor().map(|(.., def_id)| def_id)
4198    }
4199}
4200
4201// The bodies for items are stored "out of line", in a separate
4202// hashmap in the `Crate`. Here we just record the hir-id of the item
4203// so it can fetched later.
4204#[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)]
4205pub struct ItemId {
4206    pub owner_id: OwnerId,
4207}
4208
4209impl ItemId {
4210    #[inline]
4211    pub fn hir_id(&self) -> HirId {
4212        // Items are always HIR owners.
4213        HirId::make_owner(self.owner_id.def_id)
4214    }
4215}
4216
4217/// An item
4218///
4219/// For more details, see the [rust lang reference].
4220/// Note that the reference does not document nightly-only features.
4221/// There may be also slight differences in the names and representation of AST nodes between
4222/// the compiler and the reference.
4223///
4224/// [rust lang reference]: https://doc.rust-lang.org/reference/items.html
4225#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for Item<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "Item",
            "owner_id", &self.owner_id, "kind", &self.kind, "span",
            &self.span, "vis_span", &self.vis_span, "eii", &&self.eii)
    }
}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,
                        eii: 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)]
4226pub struct Item<'hir> {
4227    pub owner_id: OwnerId,
4228    pub kind: ItemKind<'hir>,
4229    pub span: Span,
4230    pub vis_span: Span,
4231    /// hint to speed up collection: true if the item is a static or function and has
4232    /// either an `EiiImpls` or `EiiExternTarget` attribute
4233    pub eii: bool,
4234}
4235
4236impl<'hir> Item<'hir> {
4237    #[inline]
4238    pub fn hir_id(&self) -> HirId {
4239        // Items are always HIR owners.
4240        HirId::make_owner(self.owner_id.def_id)
4241    }
4242
4243    #[inline]
4244    pub fn item_id(&self) -> ItemId {
4245        ItemId { owner_id: self.owner_id }
4246    }
4247
4248    /// Check if this is an [`ItemKind::Enum`], [`ItemKind::Struct`] or
4249    /// [`ItemKind::Union`].
4250    pub fn is_adt(&self) -> bool {
4251        #[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(..))
4252    }
4253
4254    /// Check if this is an [`ItemKind::Struct`] or [`ItemKind::Union`].
4255    pub fn is_struct_or_union(&self) -> bool {
4256        #[allow(non_exhaustive_omitted_patterns)] match self.kind {
    ItemKind::Struct(..) | ItemKind::Union(..) => true,
    _ => false,
}matches!(self.kind, ItemKind::Struct(..) | ItemKind::Union(..))
4257    }
4258
4259    #[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! {
4260        expect_extern_crate, (Option<Symbol>, Ident),
4261            ItemKind::ExternCrate(s, ident), (*s, *ident);
4262
4263        expect_use, (&'hir UsePath<'hir>, UseKind), ItemKind::Use(p, uk), (p, *uk);
4264
4265        expect_static, (Mutability, Ident, &'hir Ty<'hir>, BodyId),
4266            ItemKind::Static(mutbl, ident, ty, body), (*mutbl, *ident, ty, *body);
4267
4268        expect_const, (Ident, &'hir Generics<'hir>, &'hir Ty<'hir>, ConstItemRhs<'hir>),
4269            ItemKind::Const(ident, generics, ty, rhs), (*ident, generics, ty, *rhs);
4270
4271        expect_fn, (Ident, &FnSig<'hir>, &'hir Generics<'hir>, BodyId),
4272            ItemKind::Fn { ident, sig, generics, body, .. }, (*ident, sig, generics, *body);
4273
4274        expect_macro, (Ident, &ast::MacroDef, MacroKinds),
4275            ItemKind::Macro(ident, def, mk), (*ident, def, *mk);
4276
4277        expect_mod, (Ident, &'hir Mod<'hir>), ItemKind::Mod(ident, m), (*ident, m);
4278
4279        expect_foreign_mod, (ExternAbi, &'hir [ForeignItemId]),
4280            ItemKind::ForeignMod { abi, items }, (*abi, items);
4281
4282        expect_global_asm, &'hir InlineAsm<'hir>, ItemKind::GlobalAsm { asm, .. }, asm;
4283
4284        expect_ty_alias, (Ident, &'hir Generics<'hir>, &'hir Ty<'hir>),
4285            ItemKind::TyAlias(ident, generics, ty), (*ident, generics, ty);
4286
4287        expect_enum, (Ident, &'hir Generics<'hir>, &EnumDef<'hir>),
4288            ItemKind::Enum(ident, generics, def), (*ident, generics, def);
4289
4290        expect_struct, (Ident, &'hir Generics<'hir>, &VariantData<'hir>),
4291            ItemKind::Struct(ident, generics, data), (*ident, generics, data);
4292
4293        expect_union, (Ident, &'hir Generics<'hir>, &VariantData<'hir>),
4294            ItemKind::Union(ident, generics, data), (*ident, generics, data);
4295
4296        expect_trait,
4297            (
4298                &'hir ImplRestriction<'hir>,
4299                Constness,
4300                IsAuto,
4301                Safety,
4302                Ident,
4303                &'hir Generics<'hir>,
4304                GenericBounds<'hir>,
4305                &'hir [TraitItemId]
4306            ),
4307            ItemKind::Trait { impl_restriction, constness, is_auto, safety, ident, generics, bounds, items },
4308            (impl_restriction, *constness, *is_auto, *safety, *ident, generics, bounds, items);
4309
4310        expect_trait_alias, (Constness, Ident, &'hir Generics<'hir>, GenericBounds<'hir>),
4311            ItemKind::TraitAlias(constness, ident, generics, bounds), (*constness, *ident, generics, bounds);
4312
4313        expect_impl, &Impl<'hir>, ItemKind::Impl(imp), imp;
4314    }
4315}
4316
4317#[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)]
4318#[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)]
4319pub enum Safety {
4320    /// This is the default variant, because the compiler messing up
4321    /// metadata encoding and failing to encode a `Safe` flag, means
4322    /// downstream crates think a thing is `Unsafe` instead of silently
4323    /// treating an unsafe thing as safe.
4324    #[default]
4325    Unsafe,
4326    Safe,
4327}
4328
4329impl Safety {
4330    pub fn prefix_str(self) -> &'static str {
4331        match self {
4332            Self::Unsafe => "unsafe ",
4333            Self::Safe => "",
4334        }
4335    }
4336
4337    #[inline]
4338    pub fn is_unsafe(self) -> bool {
4339        !self.is_safe()
4340    }
4341
4342    #[inline]
4343    pub fn is_safe(self) -> bool {
4344        match self {
4345            Self::Unsafe => false,
4346            Self::Safe => true,
4347        }
4348    }
4349}
4350
4351impl fmt::Display for Safety {
4352    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
4353        f.write_str(match *self {
4354            Self::Unsafe => "unsafe",
4355            Self::Safe => "safe",
4356        })
4357    }
4358}
4359
4360#[derive(#[automatically_derived]
impl ::core::marker::Copy for Constness { }Copy, #[automatically_derived]
impl ::core::clone::Clone for Constness {
    #[inline]
    fn clone(&self) -> Constness {
        let _: ::core::clone::AssertParamIsClone<bool>;
        *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 &&
            match (self, other) {
                (Constness::Const { always: __self_0 }, Constness::Const {
                    always: __arg1_0 }) => __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Constness {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<bool>;
    }
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for Constness {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Constness::Const { always: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Const",
                    "always", &__self_0),
            Constness::NotConst =>
                ::core::fmt::Formatter::write_str(f, "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 { always: ref __binding_0 } => { 0usize }
                        Constness::NotConst => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    Constness::Const { always: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    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 {
                            always: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    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 { always: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    Constness::NotConst => {}
                }
            }
        }
    };StableHash)]
4361pub enum Constness {
4362    Const { always: bool },
4363    NotConst,
4364}
4365
4366/// This impl exists as an optimization so that metadata deserialization can
4367/// store the value directly and not have to encode it wrapped in another `Option`.
4368impl Default for Constness {
4369    fn default() -> Self {
4370        Self::Const { always: false }
4371    }
4372}
4373
4374impl fmt::Display for Constness {
4375    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
4376        f.write_str(match *self {
4377            Self::Const { always: true } => "comptime",
4378            Self::Const { always: false } => "const",
4379            Self::NotConst => "non-const",
4380        })
4381    }
4382}
4383
4384#[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)]
4385pub struct ImplRestriction<'hir> {
4386    pub kind: RestrictionKind<'hir>,
4387    pub span: Span,
4388}
4389
4390#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for MutRestriction<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "MutRestriction", "kind", &self.kind, "span", &&self.span)
    }
}Debug, #[automatically_derived]
impl<'hir> ::core::clone::Clone for MutRestriction<'hir> {
    #[inline]
    fn clone(&self) -> MutRestriction<'hir> {
        let _: ::core::clone::AssertParamIsClone<RestrictionKind<'hir>>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl<'hir> ::core::marker::Copy for MutRestriction<'hir> { }Copy, const _: () =
    {
        impl<'hir> ::rustc_data_structures::stable_hash::StableHash for
            MutRestriction<'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 {
                    MutRestriction {
                        kind: ref __binding_0, span: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
4391pub struct MutRestriction<'hir> {
4392    pub kind: RestrictionKind<'hir>,
4393    pub span: Span,
4394}
4395
4396#[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)]
4397pub enum RestrictionKind<'hir> {
4398    /// The restriction does not affect the item.
4399    Unrestricted,
4400    /// The restriction only applies outside of this path.
4401    Restricted(&'hir Path<'hir, DefId>),
4402}
4403
4404/// The actual safety specified in syntax. We may treat
4405/// its safety different within the type system to create a
4406/// "sound by default" system that needs checking this enum
4407/// explicitly to allow unsafe operations.
4408#[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)]
4409pub enum HeaderSafety {
4410    /// A safe function annotated with `#[target_feature(..)]`.
4411    /// The type system treats this function as an unsafe function,
4412    /// but safety checking will check this enum to treat it as safe
4413    /// and allowing calling other safe target feature functions with
4414    /// the same features without requiring an additional unsafe block.
4415    SafeTargetFeatures,
4416    Normal(Safety),
4417}
4418
4419impl From<Safety> for HeaderSafety {
4420    fn from(v: Safety) -> Self {
4421        Self::Normal(v)
4422    }
4423}
4424
4425#[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)]
4426pub struct FnHeader {
4427    pub safety: HeaderSafety,
4428    pub constness: Constness,
4429    pub asyncness: IsAsync,
4430    pub abi: ExternAbi,
4431}
4432
4433impl FnHeader {
4434    pub fn is_async(&self) -> bool {
4435        #[allow(non_exhaustive_omitted_patterns)] match self.asyncness {
    IsAsync::Async(_) => true,
    _ => false,
}matches!(self.asyncness, IsAsync::Async(_))
4436    }
4437
4438    pub fn is_unsafe(&self) -> bool {
4439        self.safety().is_unsafe()
4440    }
4441
4442    pub fn is_safe(&self) -> bool {
4443        self.safety().is_safe()
4444    }
4445
4446    pub fn safety(&self) -> Safety {
4447        match self.safety {
4448            HeaderSafety::SafeTargetFeatures => Safety::Unsafe,
4449            HeaderSafety::Normal(safety) => safety,
4450        }
4451    }
4452}
4453
4454#[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)]
4455pub enum ItemKind<'hir> {
4456    /// An `extern crate` item, with optional *original* crate name if the crate was renamed.
4457    ///
4458    /// E.g., `extern crate foo` or `extern crate foo_bar as foo`.
4459    ExternCrate(Option<Symbol>, Ident),
4460
4461    /// `use foo::bar::*;` or `use foo::bar::baz as quux;`
4462    ///
4463    /// or just
4464    ///
4465    /// `use foo::bar::baz;` (with `as baz` implicitly on the right).
4466    Use(&'hir UsePath<'hir>, UseKind),
4467
4468    /// A `static` item.
4469    Static(Mutability, Ident, &'hir Ty<'hir>, BodyId),
4470    /// A `const` item.
4471    Const(Ident, &'hir Generics<'hir>, &'hir Ty<'hir>, ConstItemRhs<'hir>),
4472    /// A function declaration.
4473    Fn {
4474        sig: FnSig<'hir>,
4475        ident: Ident,
4476        generics: &'hir Generics<'hir>,
4477        body: BodyId,
4478        /// Whether this function actually has a body.
4479        /// For functions without a body, `body` is synthesized (to avoid ICEs all over the
4480        /// compiler), but that code should never be translated.
4481        has_body: bool,
4482    },
4483    /// A MBE macro definition (`macro_rules!` or `macro`).
4484    Macro(Ident, &'hir ast::MacroDef, MacroKinds),
4485    /// A module.
4486    Mod(Ident, &'hir Mod<'hir>),
4487    /// An external module, e.g. `extern { .. }`.
4488    ForeignMod { abi: ExternAbi, items: &'hir [ForeignItemId] },
4489    /// Module-level inline assembly (from `global_asm!`).
4490    GlobalAsm {
4491        asm: &'hir InlineAsm<'hir>,
4492        /// A fake body which stores typeck results for the global asm's sym_fn
4493        /// operands, which are represented as path expressions. This body contains
4494        /// a single [`ExprKind::InlineAsm`] which points to the asm in the field
4495        /// above, and which is typechecked like a inline asm expr just for the
4496        /// typeck results.
4497        fake_body: BodyId,
4498    },
4499    /// A type alias, e.g., `type Foo = Bar<u8>`.
4500    TyAlias(Ident, &'hir Generics<'hir>, &'hir Ty<'hir>),
4501    /// An enum definition, e.g., `enum Foo<A, B> { C<A>, D<B> }`.
4502    Enum(Ident, &'hir Generics<'hir>, EnumDef<'hir>),
4503    /// A struct definition, e.g., `struct Foo<A> {x: A}`.
4504    Struct(Ident, &'hir Generics<'hir>, VariantData<'hir>),
4505    /// A union definition, e.g., `union Foo<A, B> {x: A, y: B}`.
4506    Union(Ident, &'hir Generics<'hir>, VariantData<'hir>),
4507    /// A trait definition.
4508    Trait {
4509        impl_restriction: &'hir ImplRestriction<'hir>,
4510        constness: Constness,
4511        is_auto: IsAuto,
4512        safety: Safety,
4513        ident: Ident,
4514        generics: &'hir Generics<'hir>,
4515        bounds: GenericBounds<'hir>,
4516        items: &'hir [TraitItemId],
4517    },
4518    /// A trait alias.
4519    TraitAlias(Constness, Ident, &'hir Generics<'hir>, GenericBounds<'hir>),
4520
4521    /// An implementation, e.g., `impl<A> Trait for Foo { .. }`.
4522    Impl(Impl<'hir>),
4523}
4524
4525/// Represents an impl block declaration.
4526///
4527/// E.g., `impl $Type { .. }` or `impl $Trait for $Type { .. }`
4528/// Refer to [`ImplItem`] for an associated item within an impl block.
4529#[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)]
4530pub struct Impl<'hir> {
4531    pub generics: &'hir Generics<'hir>,
4532    pub of_trait: Option<&'hir TraitImplHeader<'hir>>,
4533    pub self_ty: &'hir Ty<'hir>,
4534    pub items: &'hir [ImplItemId],
4535    pub constness: Constness,
4536}
4537
4538#[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)]
4539pub struct TraitImplHeader<'hir> {
4540    pub safety: Safety,
4541    pub polarity: ImplPolarity,
4542    pub defaultness: Defaultness,
4543    // We do not put a `Span` in `Defaultness` because it breaks foreign crate metadata
4544    // decoding as `Span`s cannot be decoded when a `Session` is not available.
4545    pub defaultness_span: Option<Span>,
4546    pub trait_ref: TraitRef<'hir>,
4547}
4548
4549impl ItemKind<'_> {
4550    pub fn ident(&self) -> Option<Ident> {
4551        match *self {
4552            ItemKind::ExternCrate(_, ident)
4553            | ItemKind::Use(_, UseKind::Single(ident))
4554            | ItemKind::Static(_, ident, ..)
4555            | ItemKind::Const(ident, ..)
4556            | ItemKind::Fn { ident, .. }
4557            | ItemKind::Macro(ident, ..)
4558            | ItemKind::Mod(ident, ..)
4559            | ItemKind::TyAlias(ident, ..)
4560            | ItemKind::Enum(ident, ..)
4561            | ItemKind::Struct(ident, ..)
4562            | ItemKind::Union(ident, ..)
4563            | ItemKind::Trait { ident, .. }
4564            | ItemKind::TraitAlias(_, ident, ..) => Some(ident),
4565
4566            ItemKind::Use(_, UseKind::Glob | UseKind::ListStem)
4567            | ItemKind::ForeignMod { .. }
4568            | ItemKind::GlobalAsm { .. }
4569            | ItemKind::Impl(_) => None,
4570        }
4571    }
4572
4573    pub fn generics(&self) -> Option<&Generics<'_>> {
4574        Some(match self {
4575            ItemKind::Fn { generics, .. }
4576            | ItemKind::TyAlias(_, generics, _)
4577            | ItemKind::Const(_, generics, _, _)
4578            | ItemKind::Enum(_, generics, _)
4579            | ItemKind::Struct(_, generics, _)
4580            | ItemKind::Union(_, generics, _)
4581            | ItemKind::Trait { generics, .. }
4582            | ItemKind::TraitAlias(_, _, generics, _)
4583            | ItemKind::Impl(Impl { generics, .. }) => generics,
4584            _ => return None,
4585        })
4586    }
4587
4588    pub fn recovered(&self) -> bool {
4589        match self {
4590            ItemKind::Struct(
4591                _,
4592                _,
4593                VariantData::Struct { recovered: ast::Recovered::Yes(_), .. },
4594            ) => true,
4595            ItemKind::Union(
4596                _,
4597                _,
4598                VariantData::Struct { recovered: ast::Recovered::Yes(_), .. },
4599            ) => true,
4600            ItemKind::Enum(_, _, def) => def.variants.iter().any(|v| match v.data {
4601                VariantData::Struct { recovered: ast::Recovered::Yes(_), .. } => true,
4602                _ => false,
4603            }),
4604            _ => false,
4605        }
4606    }
4607}
4608
4609// The bodies for items are stored "out of line", in a separate
4610// hashmap in the `Crate`. Here we just record the hir-id of the item
4611// so it can fetched later.
4612#[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)]
4613pub struct ForeignItemId {
4614    pub owner_id: OwnerId,
4615}
4616
4617impl ForeignItemId {
4618    #[inline]
4619    pub fn hir_id(&self) -> HirId {
4620        // Items are always HIR owners.
4621        HirId::make_owner(self.owner_id.def_id)
4622    }
4623}
4624
4625#[derive(#[automatically_derived]
impl<'hir> ::core::fmt::Debug for ForeignItem<'hir> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "ForeignItem",
            "ident", &self.ident, "kind", &self.kind, "owner_id",
            &self.owner_id, "span", &self.span, "vis_span", &&self.vis_span)
    }
}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>;
        *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 } => {
                        { __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)]
4626pub struct ForeignItem<'hir> {
4627    pub ident: Ident,
4628    pub kind: ForeignItemKind<'hir>,
4629    pub owner_id: OwnerId,
4630    pub span: Span,
4631    pub vis_span: Span,
4632}
4633
4634impl ForeignItem<'_> {
4635    #[inline]
4636    pub fn hir_id(&self) -> HirId {
4637        // Items are always HIR owners.
4638        HirId::make_owner(self.owner_id.def_id)
4639    }
4640
4641    pub fn foreign_item_id(&self) -> ForeignItemId {
4642        ForeignItemId { owner_id: self.owner_id }
4643    }
4644}
4645
4646/// An item within an `extern` block.
4647#[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)]
4648pub enum ForeignItemKind<'hir> {
4649    /// A foreign function.
4650    ///
4651    /// All argument idents are actually always present (i.e. `Some`), but
4652    /// `&[Option<Ident>]` is used because of code paths shared with `TraitFn`
4653    /// and `FnPtrTy`. The sharing is due to all of these cases not allowing
4654    /// arbitrary patterns for parameters.
4655    Fn(FnSig<'hir>, &'hir [Option<Ident>], &'hir Generics<'hir>),
4656    /// A foreign static item (`static ext: u8`).
4657    Static(&'hir Ty<'hir>, Mutability, Safety),
4658    /// A foreign type.
4659    Type,
4660}
4661
4662/// A variable captured by a closure.
4663#[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)]
4664pub struct Upvar {
4665    /// First span where it is accessed (there can be multiple).
4666    pub span: Span,
4667}
4668
4669// The TraitCandidate's import_ids is empty if the trait is defined in the same module, and
4670// has length > 0 if the trait is found through an chain of imports, starting with the
4671// import/use statement in the scope where the trait is used.
4672#[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)]
4673pub struct TraitCandidate<'hir> {
4674    pub def_id: DefId,
4675    pub import_ids: &'hir [LocalDefId],
4676    // Indicates whether this trait candidate is ambiguously glob imported
4677    // in it's scope. Related to the AMBIGUOUS_GLOB_IMPORTED_TRAITS lint.
4678    // If this is set to true and the trait is used as a result of method lookup, this
4679    // lint is thrown.
4680    pub lint_ambiguous: bool,
4681}
4682
4683#[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)]
4684pub enum OwnerNode<'hir> {
4685    Item(&'hir Item<'hir>),
4686    ForeignItem(&'hir ForeignItem<'hir>),
4687    TraitItem(&'hir TraitItem<'hir>),
4688    ImplItem(&'hir ImplItem<'hir>),
4689    Crate(&'hir Mod<'hir>),
4690    Synthetic,
4691}
4692
4693impl<'hir> OwnerNode<'hir> {
4694    pub fn span(&self) -> Span {
4695        match self {
4696            OwnerNode::Item(Item { span, .. })
4697            | OwnerNode::ForeignItem(ForeignItem { span, .. })
4698            | OwnerNode::ImplItem(ImplItem { span, .. })
4699            | OwnerNode::TraitItem(TraitItem { span, .. }) => *span,
4700            OwnerNode::Crate(Mod { spans: ModSpans { inner_span, .. }, .. }) => *inner_span,
4701            OwnerNode::Synthetic => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
4702        }
4703    }
4704
4705    pub fn fn_sig(self) -> Option<&'hir FnSig<'hir>> {
4706        match self {
4707            OwnerNode::TraitItem(TraitItem { kind: TraitItemKind::Fn(fn_sig, _), .. })
4708            | OwnerNode::ImplItem(ImplItem { kind: ImplItemKind::Fn(fn_sig, _), .. })
4709            | OwnerNode::Item(Item { kind: ItemKind::Fn { sig: fn_sig, .. }, .. })
4710            | OwnerNode::ForeignItem(ForeignItem {
4711                kind: ForeignItemKind::Fn(fn_sig, _, _), ..
4712            }) => Some(fn_sig),
4713            _ => None,
4714        }
4715    }
4716
4717    pub fn fn_decl(self) -> Option<&'hir FnDecl<'hir>> {
4718        match self {
4719            OwnerNode::TraitItem(TraitItem { kind: TraitItemKind::Fn(fn_sig, _), .. })
4720            | OwnerNode::ImplItem(ImplItem { kind: ImplItemKind::Fn(fn_sig, _), .. })
4721            | OwnerNode::Item(Item { kind: ItemKind::Fn { sig: fn_sig, .. }, .. })
4722            | OwnerNode::ForeignItem(ForeignItem {
4723                kind: ForeignItemKind::Fn(fn_sig, _, _), ..
4724            }) => Some(fn_sig.decl),
4725            _ => None,
4726        }
4727    }
4728
4729    pub fn body_id(&self) -> Option<BodyId> {
4730        match self {
4731            OwnerNode::Item(Item {
4732                kind:
4733                    ItemKind::Static(_, _, _, body)
4734                    | ItemKind::Const(.., ConstItemRhs::Body(body))
4735                    | ItemKind::Fn { body, .. },
4736                ..
4737            })
4738            | OwnerNode::TraitItem(TraitItem {
4739                kind:
4740                    TraitItemKind::Fn(_, TraitFn::Provided(body))
4741                    | TraitItemKind::Const(_, Some(ConstItemRhs::Body(body))),
4742                ..
4743            })
4744            | OwnerNode::ImplItem(ImplItem {
4745                kind: ImplItemKind::Fn(_, body) | ImplItemKind::Const(_, ConstItemRhs::Body(body)),
4746                ..
4747            }) => Some(*body),
4748            _ => None,
4749        }
4750    }
4751
4752    pub fn generics(self) -> Option<&'hir Generics<'hir>> {
4753        Node::generics(self.into())
4754    }
4755
4756    pub fn def_id(self) -> OwnerId {
4757        match self {
4758            OwnerNode::Item(Item { owner_id, .. })
4759            | OwnerNode::TraitItem(TraitItem { owner_id, .. })
4760            | OwnerNode::ImplItem(ImplItem { owner_id, .. })
4761            | OwnerNode::ForeignItem(ForeignItem { owner_id, .. }) => *owner_id,
4762            OwnerNode::Crate(..) => rustc_hir_id::CRATE_HIR_ID.owner,
4763            OwnerNode::Synthetic => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
4764        }
4765    }
4766
4767    /// Check if node is an impl block.
4768    pub fn is_impl_block(&self) -> bool {
4769        #[allow(non_exhaustive_omitted_patterns)] match self {
    OwnerNode::Item(Item { kind: ItemKind::Impl(_), .. }) => true,
    _ => false,
}matches!(self, OwnerNode::Item(Item { kind: ItemKind::Impl(_), .. }))
4770    }
4771
4772    #[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! {
4773        expect_item,         &'hir Item<'hir>,        OwnerNode::Item(n),        n;
4774        expect_foreign_item, &'hir ForeignItem<'hir>, OwnerNode::ForeignItem(n), n;
4775        expect_impl_item,    &'hir ImplItem<'hir>,    OwnerNode::ImplItem(n),    n;
4776        expect_trait_item,   &'hir TraitItem<'hir>,   OwnerNode::TraitItem(n),   n;
4777    }
4778}
4779
4780impl<'hir> From<&'hir Item<'hir>> for OwnerNode<'hir> {
4781    fn from(val: &'hir Item<'hir>) -> Self {
4782        OwnerNode::Item(val)
4783    }
4784}
4785
4786impl<'hir> From<&'hir ForeignItem<'hir>> for OwnerNode<'hir> {
4787    fn from(val: &'hir ForeignItem<'hir>) -> Self {
4788        OwnerNode::ForeignItem(val)
4789    }
4790}
4791
4792impl<'hir> From<&'hir ImplItem<'hir>> for OwnerNode<'hir> {
4793    fn from(val: &'hir ImplItem<'hir>) -> Self {
4794        OwnerNode::ImplItem(val)
4795    }
4796}
4797
4798impl<'hir> From<&'hir TraitItem<'hir>> for OwnerNode<'hir> {
4799    fn from(val: &'hir TraitItem<'hir>) -> Self {
4800        OwnerNode::TraitItem(val)
4801    }
4802}
4803
4804impl<'hir> From<OwnerNode<'hir>> for Node<'hir> {
4805    fn from(val: OwnerNode<'hir>) -> Self {
4806        match val {
4807            OwnerNode::Item(n) => Node::Item(n),
4808            OwnerNode::ForeignItem(n) => Node::ForeignItem(n),
4809            OwnerNode::ImplItem(n) => Node::ImplItem(n),
4810            OwnerNode::TraitItem(n) => Node::TraitItem(n),
4811            OwnerNode::Crate(n) => Node::Crate(n),
4812            OwnerNode::Synthetic => Node::Synthetic,
4813        }
4814    }
4815}
4816
4817#[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)]
4818pub enum Node<'hir> {
4819    Param(&'hir Param<'hir>),
4820    Item(&'hir Item<'hir>),
4821    ForeignItem(&'hir ForeignItem<'hir>),
4822    TraitItem(&'hir TraitItem<'hir>),
4823    ImplItem(&'hir ImplItem<'hir>),
4824    Variant(&'hir Variant<'hir>),
4825    Field(&'hir FieldDef<'hir>),
4826    AnonConst(&'hir AnonConst),
4827    ConstBlock(&'hir ConstBlock),
4828    ConstArg(&'hir ConstArg<'hir>),
4829    Expr(&'hir Expr<'hir>),
4830    ExprField(&'hir ExprField<'hir>),
4831    ConstArgExprField(&'hir ConstArgExprField<'hir>),
4832    Stmt(&'hir Stmt<'hir>),
4833    PathSegment(&'hir PathSegment<'hir>),
4834    Ty(&'hir Ty<'hir>),
4835    AssocItemConstraint(&'hir AssocItemConstraint<'hir>),
4836    TraitRef(&'hir TraitRef<'hir>),
4837    OpaqueTy(&'hir OpaqueTy<'hir>),
4838    TyPat(&'hir TyPat<'hir>),
4839    Pat(&'hir Pat<'hir>),
4840    PatField(&'hir PatField<'hir>),
4841    /// Needed as its own node with its own HirId for tracking
4842    /// the unadjusted type of literals within patterns
4843    /// (e.g. byte str literals not being of slice type).
4844    PatExpr(&'hir PatExpr<'hir>),
4845    Arm(&'hir Arm<'hir>),
4846    Block(&'hir Block<'hir>),
4847    LetStmt(&'hir LetStmt<'hir>),
4848    /// `Ctor` refers to the constructor of an enum variant or struct. Only tuple or unit variants
4849    /// with synthesized constructors.
4850    Ctor(&'hir VariantData<'hir>),
4851    Lifetime(&'hir Lifetime),
4852    GenericParam(&'hir GenericParam<'hir>),
4853    Crate(&'hir Mod<'hir>),
4854    Infer(&'hir InferArg),
4855    WherePredicate(&'hir WherePredicate<'hir>),
4856    PreciseCapturingNonLifetimeArg(&'hir PreciseCapturingNonLifetimeArg),
4857    // Created by query feeding
4858    Synthetic,
4859    Err(Span),
4860}
4861
4862impl<'hir> Node<'hir> {
4863    /// Get the identifier of this `Node`, if applicable.
4864    ///
4865    /// # Edge cases
4866    ///
4867    /// Calling `.ident()` on a [`Node::Ctor`] will return `None`
4868    /// because `Ctor`s do not have identifiers themselves.
4869    /// Instead, call `.ident()` on the parent struct/variant, like so:
4870    ///
4871    /// ```ignore (illustrative)
4872    /// ctor
4873    ///     .ctor_hir_id()
4874    ///     .map(|ctor_id| tcx.parent_hir_node(ctor_id))
4875    ///     .and_then(|parent| parent.ident())
4876    /// ```
4877    pub fn ident(&self) -> Option<Ident> {
4878        match self {
4879            Node::Item(item) => item.kind.ident(),
4880            Node::TraitItem(TraitItem { ident, .. })
4881            | Node::ImplItem(ImplItem { ident, .. })
4882            | Node::ForeignItem(ForeignItem { ident, .. })
4883            | Node::Field(FieldDef { ident, .. })
4884            | Node::Variant(Variant { ident, .. })
4885            | Node::PathSegment(PathSegment { ident, .. }) => Some(*ident),
4886            Node::Lifetime(lt) => Some(lt.ident),
4887            Node::GenericParam(p) => Some(p.name.ident()),
4888            Node::AssocItemConstraint(c) => Some(c.ident),
4889            Node::PatField(f) => Some(f.ident),
4890            Node::ExprField(f) => Some(f.ident),
4891            Node::ConstArgExprField(f) => Some(f.field),
4892            Node::PreciseCapturingNonLifetimeArg(a) => Some(a.ident),
4893            Node::Param(..)
4894            | Node::AnonConst(..)
4895            | Node::ConstBlock(..)
4896            | Node::ConstArg(..)
4897            | Node::Expr(..)
4898            | Node::Stmt(..)
4899            | Node::Block(..)
4900            | Node::Ctor(..)
4901            | Node::Pat(..)
4902            | Node::TyPat(..)
4903            | Node::PatExpr(..)
4904            | Node::Arm(..)
4905            | Node::LetStmt(..)
4906            | Node::Crate(..)
4907            | Node::Ty(..)
4908            | Node::TraitRef(..)
4909            | Node::OpaqueTy(..)
4910            | Node::Infer(..)
4911            | Node::WherePredicate(..)
4912            | Node::Synthetic
4913            | Node::Err(..) => None,
4914        }
4915    }
4916
4917    pub fn fn_decl(self) -> Option<&'hir FnDecl<'hir>> {
4918        match self {
4919            Node::TraitItem(TraitItem { kind: TraitItemKind::Fn(fn_sig, _), .. })
4920            | Node::ImplItem(ImplItem { kind: ImplItemKind::Fn(fn_sig, _), .. })
4921            | Node::Item(Item { kind: ItemKind::Fn { sig: fn_sig, .. }, .. })
4922            | Node::ForeignItem(ForeignItem { kind: ForeignItemKind::Fn(fn_sig, _, _), .. }) => {
4923                Some(fn_sig.decl)
4924            }
4925            Node::Expr(Expr { kind: ExprKind::Closure(Closure { fn_decl, .. }), .. }) => {
4926                Some(fn_decl)
4927            }
4928            _ => None,
4929        }
4930    }
4931
4932    /// Get a `hir::Impl` if the node is an impl block for the given `trait_def_id`.
4933    pub fn impl_block_of_trait(self, trait_def_id: DefId) -> Option<&'hir Impl<'hir>> {
4934        if let Node::Item(Item { kind: ItemKind::Impl(impl_block), .. }) = self
4935            && let Some(of_trait) = impl_block.of_trait
4936            && let Some(trait_id) = of_trait.trait_ref.trait_def_id()
4937            && trait_id == trait_def_id
4938        {
4939            Some(impl_block)
4940        } else {
4941            None
4942        }
4943    }
4944
4945    pub fn fn_sig(self) -> Option<&'hir FnSig<'hir>> {
4946        match self {
4947            Node::TraitItem(TraitItem { kind: TraitItemKind::Fn(fn_sig, _), .. })
4948            | Node::ImplItem(ImplItem { kind: ImplItemKind::Fn(fn_sig, _), .. })
4949            | Node::Item(Item { kind: ItemKind::Fn { sig: fn_sig, .. }, .. })
4950            | Node::ForeignItem(ForeignItem { kind: ForeignItemKind::Fn(fn_sig, _, _), .. }) => {
4951                Some(fn_sig)
4952            }
4953            _ => None,
4954        }
4955    }
4956
4957    /// Get the type for constants, assoc types, type aliases and statics.
4958    pub fn ty(self) -> Option<&'hir Ty<'hir>> {
4959        match self {
4960            Node::Item(it) => match it.kind {
4961                ItemKind::TyAlias(_, _, ty)
4962                | ItemKind::Static(_, _, ty, _)
4963                | ItemKind::Const(_, _, ty, _) => Some(ty),
4964                ItemKind::Impl(impl_item) => Some(&impl_item.self_ty),
4965                _ => None,
4966            },
4967            Node::TraitItem(it) => match it.kind {
4968                TraitItemKind::Const(ty, _) => Some(ty),
4969                TraitItemKind::Type(_, ty) => ty,
4970                _ => None,
4971            },
4972            Node::ImplItem(it) => match it.kind {
4973                ImplItemKind::Const(ty, _) => Some(ty),
4974                ImplItemKind::Type(ty) => Some(ty),
4975                _ => None,
4976            },
4977            Node::ForeignItem(it) => match it.kind {
4978                ForeignItemKind::Static(ty, ..) => Some(ty),
4979                _ => None,
4980            },
4981            Node::GenericParam(param) => match param.kind {
4982                GenericParamKind::Lifetime { .. } => None,
4983                GenericParamKind::Type { default, .. } => default,
4984                GenericParamKind::Const { ty, .. } => Some(ty),
4985            },
4986            Node::Field(f) => Some(f.ty),
4987            _ => None,
4988        }
4989    }
4990
4991    pub fn alias_ty(self) -> Option<&'hir Ty<'hir>> {
4992        match self {
4993            Node::Item(Item { kind: ItemKind::TyAlias(_, _, ty), .. }) => Some(ty),
4994            _ => None,
4995        }
4996    }
4997
4998    #[inline]
4999    pub fn associated_body(&self) -> Option<(LocalDefId, BodyId)> {
5000        match self {
5001            Node::Item(Item {
5002                owner_id,
5003                kind:
5004                    ItemKind::Const(.., ConstItemRhs::Body(body))
5005                    | ItemKind::Static(.., body)
5006                    | ItemKind::Fn { body, .. },
5007                ..
5008            })
5009            | Node::TraitItem(TraitItem {
5010                owner_id,
5011                kind:
5012                    TraitItemKind::Const(_, Some(ConstItemRhs::Body(body)))
5013                    | TraitItemKind::Fn(_, TraitFn::Provided(body)),
5014                ..
5015            })
5016            | Node::ImplItem(ImplItem {
5017                owner_id,
5018                kind: ImplItemKind::Const(.., ConstItemRhs::Body(body)) | ImplItemKind::Fn(_, body),
5019                ..
5020            }) => Some((owner_id.def_id, *body)),
5021
5022            Node::Item(Item {
5023                owner_id, kind: ItemKind::GlobalAsm { asm: _, fake_body }, ..
5024            }) => Some((owner_id.def_id, *fake_body)),
5025
5026            Node::Expr(Expr { kind: ExprKind::Closure(Closure { def_id, body, .. }), .. }) => {
5027                Some((*def_id, *body))
5028            }
5029
5030            Node::AnonConst(constant) => Some((constant.def_id, constant.body)),
5031            Node::ConstBlock(constant) => Some((constant.def_id, constant.body)),
5032
5033            _ => None,
5034        }
5035    }
5036
5037    pub fn body_id(&self) -> Option<BodyId> {
5038        Some(self.associated_body()?.1)
5039    }
5040
5041    pub fn generics(self) -> Option<&'hir Generics<'hir>> {
5042        match self {
5043            Node::ForeignItem(ForeignItem {
5044                kind: ForeignItemKind::Fn(_, _, generics), ..
5045            })
5046            | Node::TraitItem(TraitItem { generics, .. })
5047            | Node::ImplItem(ImplItem { generics, .. }) => Some(generics),
5048            Node::Item(item) => item.kind.generics(),
5049            _ => None,
5050        }
5051    }
5052
5053    pub fn as_owner(self) -> Option<OwnerNode<'hir>> {
5054        match self {
5055            Node::Item(i) => Some(OwnerNode::Item(i)),
5056            Node::ForeignItem(i) => Some(OwnerNode::ForeignItem(i)),
5057            Node::TraitItem(i) => Some(OwnerNode::TraitItem(i)),
5058            Node::ImplItem(i) => Some(OwnerNode::ImplItem(i)),
5059            Node::Crate(i) => Some(OwnerNode::Crate(i)),
5060            Node::Synthetic => Some(OwnerNode::Synthetic),
5061            _ => None,
5062        }
5063    }
5064
5065    pub fn fn_kind(self) -> Option<FnKind<'hir>> {
5066        match self {
5067            Node::Item(i) => match i.kind {
5068                ItemKind::Fn { ident, sig, generics, .. } => {
5069                    Some(FnKind::ItemFn(ident, generics, sig.header))
5070                }
5071                _ => None,
5072            },
5073            Node::TraitItem(ti) => match ti.kind {
5074                TraitItemKind::Fn(ref sig, _) => Some(FnKind::Method(ti.ident, sig)),
5075                _ => None,
5076            },
5077            Node::ImplItem(ii) => match ii.kind {
5078                ImplItemKind::Fn(ref sig, _) => Some(FnKind::Method(ii.ident, sig)),
5079                _ => None,
5080            },
5081            Node::Expr(e) => match e.kind {
5082                ExprKind::Closure { .. } => Some(FnKind::Closure),
5083                _ => None,
5084            },
5085            _ => None,
5086        }
5087    }
5088
5089    /// For expressions, patterns, and types return the path if it's a path expr/pat/ty.
5090    pub fn path(self) -> Option<&'hir QPath<'hir>> {
5091        match self {
5092            Node::Ty(Ty { kind: TyKind::Path(path), .. })
5093            | Node::Expr(Expr { kind: ExprKind::Path(path), .. })
5094            | Node::PatExpr(PatExpr { kind: PatExprKind::Path(path), .. }) => Some(path),
5095            _ => None,
5096        }
5097    }
5098
5099    #[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! {
5100        expect_param,         &'hir Param<'hir>,        Node::Param(n),        n;
5101        expect_item,          &'hir Item<'hir>,         Node::Item(n),         n;
5102        expect_foreign_item,  &'hir ForeignItem<'hir>,  Node::ForeignItem(n),  n;
5103        expect_trait_item,    &'hir TraitItem<'hir>,    Node::TraitItem(n),    n;
5104        expect_impl_item,     &'hir ImplItem<'hir>,     Node::ImplItem(n),     n;
5105        expect_variant,       &'hir Variant<'hir>,      Node::Variant(n),      n;
5106        expect_field,         &'hir FieldDef<'hir>,     Node::Field(n),        n;
5107        expect_anon_const,    &'hir AnonConst,          Node::AnonConst(n),    n;
5108        expect_inline_const,  &'hir ConstBlock,         Node::ConstBlock(n),   n;
5109        expect_expr,          &'hir Expr<'hir>,         Node::Expr(n),         n;
5110        expect_expr_field,    &'hir ExprField<'hir>,    Node::ExprField(n),    n;
5111        expect_stmt,          &'hir Stmt<'hir>,         Node::Stmt(n),         n;
5112        expect_path_segment,  &'hir PathSegment<'hir>,  Node::PathSegment(n),  n;
5113        expect_ty,            &'hir Ty<'hir>,           Node::Ty(n),           n;
5114        expect_assoc_item_constraint,  &'hir AssocItemConstraint<'hir>,  Node::AssocItemConstraint(n),  n;
5115        expect_trait_ref,     &'hir TraitRef<'hir>,     Node::TraitRef(n),     n;
5116        expect_opaque_ty,     &'hir OpaqueTy<'hir>,     Node::OpaqueTy(n),     n;
5117        expect_pat,           &'hir Pat<'hir>,          Node::Pat(n),          n;
5118        expect_pat_field,     &'hir PatField<'hir>,     Node::PatField(n),     n;
5119        expect_arm,           &'hir Arm<'hir>,          Node::Arm(n),          n;
5120        expect_block,         &'hir Block<'hir>,        Node::Block(n),        n;
5121        expect_let_stmt,      &'hir LetStmt<'hir>,      Node::LetStmt(n),      n;
5122        expect_ctor,          &'hir VariantData<'hir>,  Node::Ctor(n),         n;
5123        expect_lifetime,      &'hir Lifetime,           Node::Lifetime(n),     n;
5124        expect_generic_param, &'hir GenericParam<'hir>, Node::GenericParam(n), n;
5125        expect_crate,         &'hir Mod<'hir>,          Node::Crate(n),        n;
5126        expect_infer,         &'hir InferArg,           Node::Infer(n),        n;
5127        expect_closure,       &'hir Closure<'hir>, Node::Expr(Expr { kind: ExprKind::Closure(n), .. }), n;
5128    }
5129}
5130
5131// Some nodes are used a lot. Make sure they don't unintentionally get bigger.
5132#[cfg(target_pointer_width = "64")]
5133mod size_asserts {
5134    use rustc_data_structures::static_assert_size;
5135
5136    use super::*;
5137    // tidy-alphabetical-start
5138    const _: [(); 48] = [(); ::std::mem::size_of::<Block<'_>>()];static_assert_size!(Block<'_>, 48);
5139    const _: [(); 24] = [(); ::std::mem::size_of::<Body<'_>>()];static_assert_size!(Body<'_>, 24);
5140    const _: [(); 64] = [(); ::std::mem::size_of::<Expr<'_>>()];static_assert_size!(Expr<'_>, 64);
5141    const _: [(); 48] = [(); ::std::mem::size_of::<ExprKind<'_>>()];static_assert_size!(ExprKind<'_>, 48);
5142    const _: [(); 40] = [(); ::std::mem::size_of::<FnDecl<'_>>()];static_assert_size!(FnDecl<'_>, 40);
5143    const _: [(); 88] = [(); ::std::mem::size_of::<ForeignItem<'_>>()];static_assert_size!(ForeignItem<'_>, 88);
5144    const _: [(); 56] = [(); ::std::mem::size_of::<ForeignItemKind<'_>>()];static_assert_size!(ForeignItemKind<'_>, 56);
5145    const _: [(); 16] = [(); ::std::mem::size_of::<GenericArg<'_>>()];static_assert_size!(GenericArg<'_>, 16);
5146    const _: [(); 64] = [(); ::std::mem::size_of::<GenericBound<'_>>()];static_assert_size!(GenericBound<'_>, 64);
5147    const _: [(); 56] = [(); ::std::mem::size_of::<Generics<'_>>()];static_assert_size!(Generics<'_>, 56);
5148    const _: [(); 48] = [(); ::std::mem::size_of::<Impl<'_>>()];static_assert_size!(Impl<'_>, 48);
5149    const _: [(); 88] = [(); ::std::mem::size_of::<ImplItem<'_>>()];static_assert_size!(ImplItem<'_>, 88);
5150    const _: [(); 40] = [(); ::std::mem::size_of::<ImplItemKind<'_>>()];static_assert_size!(ImplItemKind<'_>, 40);
5151    const _: [(); 88] = [(); ::std::mem::size_of::<Item<'_>>()];static_assert_size!(Item<'_>, 88);
5152    const _: [(); 64] = [(); ::std::mem::size_of::<ItemKind<'_>>()];static_assert_size!(ItemKind<'_>, 64);
5153    const _: [(); 64] = [(); ::std::mem::size_of::<LetStmt<'_>>()];static_assert_size!(LetStmt<'_>, 64);
5154    const _: [(); 32] = [(); ::std::mem::size_of::<Param<'_>>()];static_assert_size!(Param<'_>, 32);
5155    const _: [(); 80] = [(); ::std::mem::size_of::<Pat<'_>>()];static_assert_size!(Pat<'_>, 80);
5156    const _: [(); 56] = [(); ::std::mem::size_of::<PatKind<'_>>()];static_assert_size!(PatKind<'_>, 56);
5157    const _: [(); 40] = [(); ::std::mem::size_of::<Path<'_>>()];static_assert_size!(Path<'_>, 40);
5158    const _: [(); 48] = [(); ::std::mem::size_of::<PathSegment<'_>>()];static_assert_size!(PathSegment<'_>, 48);
5159    const _: [(); 24] = [(); ::std::mem::size_of::<QPath<'_>>()];static_assert_size!(QPath<'_>, 24);
5160    const _: [(); 12] = [(); ::std::mem::size_of::<Res>()];static_assert_size!(Res, 12);
5161    const _: [(); 32] = [(); ::std::mem::size_of::<Stmt<'_>>()];static_assert_size!(Stmt<'_>, 32);
5162    const _: [(); 16] = [(); ::std::mem::size_of::<StmtKind<'_>>()];static_assert_size!(StmtKind<'_>, 16);
5163    const _: [(); 48] = [(); ::std::mem::size_of::<TraitImplHeader<'_>>()];static_assert_size!(TraitImplHeader<'_>, 48);
5164    const _: [(); 88] = [(); ::std::mem::size_of::<TraitItem<'_>>()];static_assert_size!(TraitItem<'_>, 88);
5165    const _: [(); 48] = [(); ::std::mem::size_of::<TraitItemKind<'_>>()];static_assert_size!(TraitItemKind<'_>, 48);
5166    const _: [(); 48] = [(); ::std::mem::size_of::<Ty<'_>>()];static_assert_size!(Ty<'_>, 48);
5167    const _: [(); 32] = [(); ::std::mem::size_of::<TyKind<'_>>()];static_assert_size!(TyKind<'_>, 32);
5168    // tidy-alphabetical-end
5169}
5170
5171#[cfg(test)]
5172mod tests;