Skip to main content

rustc_hir/
hir.rs

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