Skip to main content

rustc_type_ir/solve/
mod.rs

1pub mod inspect;
2
3use std::convert::Infallible;
4use std::fmt::Debug;
5use std::hash::Hash;
6
7use derive_where::derive_where;
8#[cfg(feature = "nightly")]
9use rustc_macros::{Decodable_NoContext, Encodable_NoContext, StableHash, StableHash_NoContext};
10use rustc_type_ir_macros::{
11    GenericTypeVisitable, Lift_Generic, TypeFoldable_Generic, TypeVisitable_Generic,
12};
13use thin_vec::ThinVec;
14use tracing::debug;
15
16use crate::inherent::*;
17use crate::lang_items::SolverTraitLangItem;
18use crate::region_constraint::RegionConstraint;
19use crate::search_graph::PathKind;
20use crate::{
21    self as ty, Canonical, CanonicalVarValues, CantBeErased, Const, ConstVid, FloatVid,
22    GenericArgKind, InferConst, IntVid, Interner, TermKind, TyVid, TypingMode, Upcast,
23};
24
25pub type CanonicalInputData<I> =
26    ty::CanonicalQueryInput<I, QueryInput<I, <I as Interner>::Predicate>>;
27pub type CanonicalResponse<I> = Canonical<I, Response<I>>;
28/// The result of evaluating a canonical query.
29///
30/// FIXME: We use a different type than the existing canonical queries. This is because
31/// we need to add a `Certainty` for `overflow` and may want to restructure this code without
32/// having to worry about changes to currently used code. Once we've made progress on this
33/// solver, merge the two responses again.
34pub type QueryResult<I> = Result<CanonicalResponse<I>, NoSolution>;
35pub type QueryResultOrRerunNonErased<I> = Result<CanonicalResponse<I>, NoSolutionOrRerunNonErased>;
36
37#[derive(#[automatically_derived]
impl ::core::marker::Copy for NoSolution { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for NoSolution { }
#[automatically_derived]
impl ::core::clone::Clone for NoSolution {
    #[inline]
    fn clone(&self) -> Self { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for NoSolution {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f, "NoSolution")
    }
}Debug, #[automatically_derived]
impl ::core::hash::Hash for NoSolution {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {}
}Hash, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for NoSolution { }
#[automatically_derived]
impl ::core::cmp::PartialEq for NoSolution {
    #[inline]
    fn eq(&self, other: &Self) -> bool { true }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for NoSolution { }Eq)]
38#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for NoSolution {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self { NoSolution => {} }
            }
        }
    };StableHash))]
39pub struct NoSolution;
40
41pub trait RerunResultExt<T> {
42    fn map_err_to_rerun(self) -> Result<Result<T, NoSolution>, RerunNonErased>;
43}
44
45impl<T> RerunResultExt<T> for Result<T, NoSolutionOrRerunNonErased> {
46    fn map_err_to_rerun(self) -> Result<Result<T, NoSolution>, RerunNonErased> {
47        match self {
48            Ok(i) => Ok(Ok(i)),
49            Err(NoSolutionOrRerunNonErased::NoSolution(NoSolution)) => Ok(Err(NoSolution)),
50            Err(NoSolutionOrRerunNonErased::RerunNonErased(e)) => Err(e),
51        }
52    }
53}
54
55/// A bit like [`NoSolution`], but for functions that normally cannot fail *unless* they accessed
56/// opaues. (See [`TypingMode::ErasedNotCoherence`]). Getting `OpaquesAccessed` doesn't mean there
57/// truly is no solution. It just means that we want to bail out of the current query as fast as
58/// possible, possibly by returning `NoSolution` if that's fastest. This is okay because when you get
59/// `OpaquesAccessed` we're guaranteed that we're going to retry this query in the original typing
60/// mode to get the correct answer.
61#[derive(#[automatically_derived]
impl ::core::marker::Copy for RerunNonErased { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for RerunNonErased { }
#[automatically_derived]
impl ::core::clone::Clone for RerunNonErased {
    #[inline]
    fn clone(&self) -> Self {
        let _: ::core::clone::AssertParamIsClone<()>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for RerunNonErased {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_tuple_field1_finish(f, "RerunNonErased",
            &&self.0)
    }
}Debug, #[automatically_derived]
impl ::core::hash::Hash for RerunNonErased {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.0, state)
    }
}Hash, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for RerunNonErased { }
#[automatically_derived]
impl ::core::cmp::PartialEq for RerunNonErased {
    #[inline]
    fn eq(&self, other: &Self) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for RerunNonErased {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<()>;
    }
}Eq)]
62#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            RerunNonErased {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    RerunNonErased(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash))]
63pub struct RerunNonErased(());
64
65#[derive(#[automatically_derived]
impl ::core::marker::Copy for NoSolutionOrRerunNonErased { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for NoSolutionOrRerunNonErased { }
#[automatically_derived]
impl ::core::clone::Clone for NoSolutionOrRerunNonErased {
    #[inline]
    fn clone(&self) -> Self {
        let _: ::core::clone::AssertParamIsClone<NoSolution>;
        let _: ::core::clone::AssertParamIsClone<RerunNonErased>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for NoSolutionOrRerunNonErased {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Self::NoSolution(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "NoSolution", &__self_0),
            Self::RerunNonErased(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "RerunNonErased", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl ::core::hash::Hash for NoSolutionOrRerunNonErased {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
            state);
        match self {
            Self::NoSolution(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            Self::RerunNonErased(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
        }
    }
}Hash, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for NoSolutionOrRerunNonErased { }
#[automatically_derived]
impl ::core::cmp::PartialEq for NoSolutionOrRerunNonErased {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
                ::core::intrinsics::discriminant_value(other) &&
            match (self, other) {
                (Self::NoSolution(__self_0), Self::NoSolution(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (Self::RerunNonErased(__self_0),
                    Self::RerunNonErased(__arg1_0)) => __self_0 == __arg1_0,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for NoSolutionOrRerunNonErased {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<NoSolution>;
        let _: ::core::cmp::AssertParamIsEq<RerunNonErased>;
    }
}Eq)]
66#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            NoSolutionOrRerunNonErased {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    NoSolutionOrRerunNonErased::NoSolution(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    NoSolutionOrRerunNonErased::RerunNonErased(ref __binding_0)
                        => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash))]
67pub enum NoSolutionOrRerunNonErased {
68    NoSolution(NoSolution),
69    RerunNonErased(RerunNonErased),
70}
71
72impl From<NoSolution> for NoSolutionOrRerunNonErased {
73    fn from(value: NoSolution) -> Self {
74        Self::NoSolution(value)
75    }
76}
77
78impl From<RerunNonErased> for NoSolutionOrRerunNonErased {
79    fn from(value: RerunNonErased) -> Self {
80        Self::RerunNonErased(value)
81    }
82}
83
84/// A small set of up to 3 `Copy` elements, used as an optimization in [`RerunCondition`].
85/// The entire set can be `Copy`ed because of this requirement.
86///
87/// Set properties maintained using [`union`](SmallCopySet::union), which deduplicates values.
88#[derive(#[automatically_derived]
impl<T: ::core::marker::Copy + Copy + Debug + Hash + Eq> ::core::marker::Copy
    for SmallCopySet<T> {
}Copy, #[automatically_derived]
impl<T: ::core::clone::Clone + Copy + Debug + Hash + Eq> ::core::clone::Clone
    for SmallCopySet<T> {
    #[inline]
    fn clone(&self) -> Self {
        match self {
            Self::Empty => Self::Empty,
            Self::One(__self_0) =>
                Self::One(::core::clone::Clone::clone(__self_0)),
            Self::Two(__self_0) =>
                Self::Two(::core::clone::Clone::clone(__self_0)),
            Self::Three(__self_0) =>
                Self::Three(::core::clone::Clone::clone(__self_0)),
        }
    }
}Clone, #[automatically_derived]
impl<T: ::core::fmt::Debug + Copy + Debug + Hash + Eq> ::core::fmt::Debug for
    SmallCopySet<T> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Self::Empty => ::core::fmt::Formatter::write_str(f, "Empty"),
            Self::One(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "One",
                    &__self_0),
            Self::Two(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Two",
                    &__self_0),
            Self::Three(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Three",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<T: ::core::hash::Hash + Copy + Debug + Hash + Eq> ::core::hash::Hash for
    SmallCopySet<T> {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
            state);
        match self {
            Self::One(__self_0) => ::core::hash::Hash::hash(__self_0, state),
            Self::Two(__self_0) => ::core::hash::Hash::hash(__self_0, state),
            Self::Three(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            _ => {}
        }
    }
}Hash, #[automatically_derived]
impl<T: ::core::cmp::PartialEq + Copy + Debug + Hash + Eq>
    ::core::marker::StructuralPartialEq for SmallCopySet<T> {
}
#[automatically_derived]
impl<T: ::core::cmp::PartialEq + Copy + Debug + Hash + Eq>
    ::core::cmp::PartialEq for SmallCopySet<T> {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
                ::core::intrinsics::discriminant_value(other) &&
            match (self, other) {
                (Self::One(__self_0), Self::One(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (Self::Two(__self_0), Self::Two(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (Self::Three(__self_0), Self::Three(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl<T: ::core::cmp::Eq + Copy + Debug + Hash + Eq> ::core::cmp::Eq for
    SmallCopySet<T> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<[T; 1]>;
        let _: ::core::cmp::AssertParamIsEq<[T; 2]>;
        let _: ::core::cmp::AssertParamIsEq<[T; 3]>;
    }
}Eq)]
89#[derive(const _: () =
    {
        impl<T: Copy + Debug + Hash + Eq, I> ::rustc_type_ir::TypeVisitable<I>
            for SmallCopySet<T> where I: Interner,
            [T; 1]: ::rustc_type_ir::TypeVisitable<I>,
            [T; 2]: ::rustc_type_ir::TypeVisitable<I>,
            [T; 3]: ::rustc_type_ir::TypeVisitable<I> {
            fn visit_with<__V: ::rustc_type_ir::TypeVisitor<I>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    SmallCopySet::Empty => {}
                    SmallCopySet::One(ref __binding_0) => {
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    SmallCopySet::Two(ref __binding_0) => {
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    SmallCopySet::Three(ref __binding_0) => {
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_type_ir::VisitorResult>::output()
            }
        }
    };TypeVisitable_Generic, const _: () =
    {
        impl<T: Copy + Debug + Hash + Eq, I> ::rustc_type_ir::TypeFoldable<I>
            for SmallCopySet<T> where I: Interner,
            T: ::rustc_type_ir::TypeFoldable<I>,
            [T; 1]: ::rustc_type_ir::TypeFoldable<I>,
            [T; 2]: ::rustc_type_ir::TypeFoldable<I>,
            [T; 3]: ::rustc_type_ir::TypeFoldable<I> {
            fn try_fold_with<__F: ::rustc_type_ir::FallibleTypeFolder<I>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        SmallCopySet::Empty => { SmallCopySet::Empty }
                        SmallCopySet::One(__binding_0) => {
                            SmallCopySet::One(::rustc_type_ir::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        SmallCopySet::Two(__binding_0) => {
                            SmallCopySet::Two(::rustc_type_ir::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        SmallCopySet::Three(__binding_0) => {
                            SmallCopySet::Three(::rustc_type_ir::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                    })
            }
            fn fold_with<__F: ::rustc_type_ir::TypeFolder<I>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    SmallCopySet::Empty => { SmallCopySet::Empty }
                    SmallCopySet::One(__binding_0) => {
                        SmallCopySet::One(::rustc_type_ir::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    SmallCopySet::Two(__binding_0) => {
                        SmallCopySet::Two(::rustc_type_ir::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    SmallCopySet::Three(__binding_0) => {
                        SmallCopySet::Three(::rustc_type_ir::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                }
            }
        }
    };TypeFoldable_Generic, const _: () =
    {
        unsafe impl<T: Copy + Debug + Hash + Eq, __V>
            ::rustc_type_ir::GenericTypeVisitable<__V> for SmallCopySet<T>
            where [T; 1]: ::rustc_type_ir::GenericTypeVisitable<__V>,
            [T; 2]: ::rustc_type_ir::GenericTypeVisitable<__V>,
            [T; 3]: ::rustc_type_ir::GenericTypeVisitable<__V> {
            fn generic_visit_with(&self, __visitor: &mut __V) {
                match *self {
                    SmallCopySet::Empty => {}
                    SmallCopySet::One(ref __binding_0) => {
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_0,
                                __visitor);
                        }
                    }
                    SmallCopySet::Two(ref __binding_0) => {
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_0,
                                __visitor);
                        }
                    }
                    SmallCopySet::Three(ref __binding_0) => {
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_0,
                                __visitor);
                        }
                    }
                }
            }
        }
    };GenericTypeVisitable)]
90#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl<T: Copy + Debug + Hash + Eq>
            ::rustc_data_structures::stable_hash::StableHash for
            SmallCopySet<T> where
            [T; 1]: ::rustc_data_structures::stable_hash::StableHash,
            [T; 2]: ::rustc_data_structures::stable_hash::StableHash,
            [T; 3]: ::rustc_data_structures::stable_hash::StableHash {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    SmallCopySet::Empty => {}
                    SmallCopySet::One(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    SmallCopySet::Two(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    SmallCopySet::Three(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash_NoContext))]
91pub enum SmallCopySet<T: Copy + Debug + Hash + Eq> {
92    Empty,
93    One([T; 1]),
94    Two([T; 2]),
95    Three([T; 3]),
96}
97
98impl<T: Copy + Debug + Hash + Eq> SmallCopySet<T> {
99    fn empty() -> Self {
100        Self::Empty
101    }
102
103    fn new(first: T) -> Self {
104        Self::One([first])
105    }
106
107    /// Computes the union of two lists. Duplicates are removed.
108    ///
109    /// Since the set can hold at most 3 elements, returns `None` if the resulting set cannot be
110    /// represented.
111    ///
112    /// In the context of [`RerunCondition`], this means we fall back to rerunning unconditionally.
113    /// This can be beneficial, since at some point, tracking all the conditions under which a query
114    /// has to be rerun becomes slower than just rerunning unconditionally. This is especially so,
115    /// since as long as rerun conditions are tracked, we keep executing the current query. As soon as
116    /// we cannot track anymore, and unconditionally rerun, we also abort the current query.
117    /// By at some point opting to abort early, we may save a lot of time skipping further work
118    /// that will have to likely be redone anyway.
119    ///
120    /// note that *not* all cases are handled. you can union two lists of two elements with equal
121    /// elements, and still get `none` back. checking for all cases is more work than just rerunning
122    /// in some cases.
123    fn union(self, other: Self) -> Option<Self> {
124        match (self, other) {
125            (Self::Empty, other) | (other, Self::Empty) => Some(other),
126
127            (Self::One([a]), Self::One([b])) if a == b => Some(Self::One([a])),
128            (Self::One([a]), Self::One([b])) => Some(Self::Two([a, b])),
129            (Self::One([a]), Self::Two([b, c])) | (Self::Two([a, b]), Self::One([c]))
130                if a == b && b == c =>
131            {
132                Some(Self::One([a]))
133            }
134            (Self::One([a]), Self::Two([b, c])) | (Self::Two([a, b]), Self::One([c])) if a == b => {
135                Some(Self::Two([a, c]))
136            }
137            (Self::One([a]), Self::Two([b, c])) | (Self::Two([a, b]), Self::One([c])) if a == c => {
138                Some(Self::Two([a, b]))
139            }
140            (Self::One([a]), Self::Two([b, c])) | (Self::Two([a, b]), Self::One([c])) if b == c => {
141                Some(Self::Two([a, b]))
142            }
143            (Self::One([a]), Self::Two([b, c])) | (Self::Two([a, b]), Self::One([c])) => {
144                Some(Self::Three([a, b, c]))
145            }
146            // There are some more cases we could handle, like 2 + 2 => 3 if there's one duplicate,
147            // But the check seems to be more expensive than the gain. Even then, the difference is
148            // tiny, and could just be noise. Not worth it regardless.
149            _ => None,
150        }
151    }
152}
153
154impl<T: Copy + Debug + Hash + Eq> AsRef<[T]> for SmallCopySet<T> {
155    fn as_ref(&self) -> &[T] {
156        match self {
157            Self::Empty => &[],
158            Self::One(l) => l,
159            Self::Two(l) => l,
160            Self::Three(l) => l,
161        }
162    }
163}
164
165/// Information about how we accessed opaque types
166/// This is what the trait solver does when each states is encountered:
167///
168/// |                         | bail? | rerun goal?                                                                                                          |
169/// | ----------------------- | ----- | -------------------------------------------------------------------------------------------------------------------- |
170/// | never                   | no    | no                                                                                                                   |
171/// | always                  | yes   | yes                                                                                                                  |
172/// | [defid in storage]      | no    | only if any of the defids in the list is in the opaque type storage OR if TypingMode::PostAnalysis                   |
173/// | opaque with hidden type | no    | only if any of the opaques in the opaque type storage has a hidden type in this list AND if TypingMode::Typeck       |
174///
175/// - "bail" is implemented with [`should_bail`](Self::should_bail).
176///   If true, we're abandoning our attempt to canonicalize in [`TypingMode::ErasedNotCoherence`],
177///   and should try to return as soon as possible to waste as little time as possible.
178///   A rerun will be attempted in the original typing mode.
179///
180/// - Rerun goal is implemented with `should_rerun_after_erased_canonicalization`, on the `EvalCtxt`.
181///
182/// Some variant names contain an `Or` here. They rerun when any of the two conditions applies
183#[automatically_derived]
impl<I: Interner> ::core::marker::Copy for RerunCondition<I> where I: Interner
    {
}
#[automatically_derived]
impl<I: Interner> ::core::clone::Clone for RerunCondition<I> where I: Interner
    {
    #[inline]
    fn clone(&self) -> Self { *self }
}
#[automatically_derived]
impl<I: Interner> ::core::fmt::Debug for RerunCondition<I> where I: Interner {
    fn fmt(&self, __f: &mut ::core::fmt::Formatter<'_>)
        -> ::core::fmt::Result {
        match self {
            RerunCondition::Never =>
                ::core::fmt::Formatter::write_str(__f, "Never"),
            RerunCondition::AnyOpaqueHasInferAsHidden =>
                ::core::fmt::Formatter::write_str(__f,
                    "AnyOpaqueHasInferAsHidden"),
            RerunCondition::OpaqueInStorage(ref __field_0) => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_tuple(__f, "OpaqueInStorage");
                ::core::fmt::DebugTuple::field(&mut __builder, __field_0);
                ::core::fmt::DebugTuple::finish(&mut __builder)
            }
            RerunCondition::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(ref __field_0)
                => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_tuple(__f,
                        "OpaqueInStorageOrAnyOpaqueHasInferAsHidden");
                ::core::fmt::DebugTuple::field(&mut __builder, __field_0);
                ::core::fmt::DebugTuple::finish(&mut __builder)
            }
            RerunCondition::Always =>
                ::core::fmt::Formatter::write_str(__f, "Always"),
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::hash::Hash for RerunCondition<I> where I: Interner {
    fn hash<__H: ::core::hash::Hasher>(&self, __state: &mut __H) {
        match self {
            RerunCondition::Never => {
                ::core::hash::Hash::hash(&::core::mem::discriminant(self),
                    __state);
            }
            RerunCondition::AnyOpaqueHasInferAsHidden => {
                ::core::hash::Hash::hash(&::core::mem::discriminant(self),
                    __state);
            }
            RerunCondition::OpaqueInStorage(ref __field_0) => {
                ::core::hash::Hash::hash(&::core::mem::discriminant(self),
                    __state);
                ::core::hash::Hash::hash(__field_0, __state);
            }
            RerunCondition::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(ref __field_0)
                => {
                ::core::hash::Hash::hash(&::core::mem::discriminant(self),
                    __state);
                ::core::hash::Hash::hash(__field_0, __state);
            }
            RerunCondition::Always => {
                ::core::hash::Hash::hash(&::core::mem::discriminant(self),
                    __state);
            }
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::cmp::PartialEq for RerunCondition<I> where
    I: Interner {
    #[inline]
    fn eq(&self, __other: &Self) -> ::core::primitive::bool {
        if ::core::mem::discriminant(self) ==
                ::core::mem::discriminant(__other) {
            match (self, __other) {
                (RerunCondition::OpaqueInStorage(ref __field_0),
                    RerunCondition::OpaqueInStorage(ref __other_field_0)) =>
                    true &&
                        ::core::cmp::PartialEq::eq(__field_0, __other_field_0),
                (RerunCondition::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(ref __field_0),
                    RerunCondition::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(ref __other_field_0))
                    =>
                    true &&
                        ::core::cmp::PartialEq::eq(__field_0, __other_field_0),
                _ => true,
            }
        } else { false }
    }
}
const _: () =
    {
        trait DeriveWhereAssertEq {
            fn assert(&self);
        }
        impl<I: Interner> DeriveWhereAssertEq for RerunCondition<I> where
            I: Interner {
            fn assert(&self) {
                struct __AssertEq<__T: ::core::cmp::Eq +
                    ?::core::marker::Sized>(::core::marker::PhantomData<__T>);
                let _: __AssertEq<SmallCopySet<I::LocalDefId>>;
                let _: __AssertEq<SmallCopySet<I::LocalDefId>>;
            }
        }
    };
#[automatically_derived]
impl<I: Interner> ::core::cmp::Eq for RerunCondition<I> where I: Interner { }#[derive_where(Copy, Clone, Debug, Hash, PartialEq, Eq; I: Interner)]
184#[derive(const _: () =
    {
        impl<I: Interner> ::rustc_type_ir::TypeVisitable<I> for
            RerunCondition<I> where I: Interner,
            SmallCopySet<I::LocalDefId>: ::rustc_type_ir::TypeVisitable<I> {
            fn visit_with<__V: ::rustc_type_ir::TypeVisitor<I>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    RerunCondition::Never => {}
                    RerunCondition::AnyOpaqueHasInferAsHidden => {}
                    RerunCondition::OpaqueInStorage(ref __binding_0) => {
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    RerunCondition::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(ref __binding_0)
                        => {
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    RerunCondition::Always => {}
                }
                <__V::Result as ::rustc_type_ir::VisitorResult>::output()
            }
        }
    };TypeVisitable_Generic, const _: () =
    {
        impl<I: Interner> ::rustc_type_ir::TypeFoldable<I> for
            RerunCondition<I> where I: Interner,
            SmallCopySet<I::LocalDefId>: ::rustc_type_ir::TypeFoldable<I> {
            fn try_fold_with<__F: ::rustc_type_ir::FallibleTypeFolder<I>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        RerunCondition::Never => { RerunCondition::Never }
                        RerunCondition::AnyOpaqueHasInferAsHidden => {
                            RerunCondition::AnyOpaqueHasInferAsHidden
                        }
                        RerunCondition::OpaqueInStorage(__binding_0) => {
                            RerunCondition::OpaqueInStorage(::rustc_type_ir::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        RerunCondition::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(__binding_0)
                            => {
                            RerunCondition::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(::rustc_type_ir::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        RerunCondition::Always => { RerunCondition::Always }
                    })
            }
            fn fold_with<__F: ::rustc_type_ir::TypeFolder<I>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    RerunCondition::Never => { RerunCondition::Never }
                    RerunCondition::AnyOpaqueHasInferAsHidden => {
                        RerunCondition::AnyOpaqueHasInferAsHidden
                    }
                    RerunCondition::OpaqueInStorage(__binding_0) => {
                        RerunCondition::OpaqueInStorage(::rustc_type_ir::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    RerunCondition::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(__binding_0)
                        => {
                        RerunCondition::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(::rustc_type_ir::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    RerunCondition::Always => { RerunCondition::Always }
                }
            }
        }
    };TypeFoldable_Generic, const _: () =
    {
        unsafe impl<I: Interner, __V>
            ::rustc_type_ir::GenericTypeVisitable<__V> for RerunCondition<I>
            where
            SmallCopySet<I::LocalDefId>: ::rustc_type_ir::GenericTypeVisitable<__V>,
            SmallCopySet<I::LocalDefId>: ::rustc_type_ir::GenericTypeVisitable<__V>
            {
            fn generic_visit_with(&self, __visitor: &mut __V) {
                match *self {
                    RerunCondition::Never => {}
                    RerunCondition::AnyOpaqueHasInferAsHidden => {}
                    RerunCondition::OpaqueInStorage(ref __binding_0) => {
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_0,
                                __visitor);
                        }
                    }
                    RerunCondition::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(ref __binding_0)
                        => {
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_0,
                                __visitor);
                        }
                    }
                    RerunCondition::Always => {}
                }
            }
        }
    };GenericTypeVisitable)]
185#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl<I: Interner> ::rustc_data_structures::stable_hash::StableHash for
            RerunCondition<I> where
            SmallCopySet<I::LocalDefId>: ::rustc_data_structures::stable_hash::StableHash
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    RerunCondition::Never => {}
                    RerunCondition::AnyOpaqueHasInferAsHidden => {}
                    RerunCondition::OpaqueInStorage(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    RerunCondition::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(ref __binding_0)
                        => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    RerunCondition::Always => {}
                }
            }
        }
    };StableHash_NoContext))]
186pub enum RerunCondition<I: Interner> {
187    Never,
188
189    /// Note that this only reruns according to the condition *if* we are in [`TypingMode::Typeck`].
190    AnyOpaqueHasInferAsHidden,
191    /// Note: unconditionally reruns in postanalysis
192    OpaqueInStorage(SmallCopySet<I::LocalDefId>),
193
194    /// Merges [`Self::AnyOpaqueHasInferAsHidden`] and [`Self::OpaqueInStorage`].
195    /// Note that just like the unmerged [`Self::OpaqueInStorage`], that part of the
196    /// condition only matters in [`TypingMode::Typeck`]
197    OpaqueInStorageOrAnyOpaqueHasInferAsHidden(SmallCopySet<I::LocalDefId>),
198
199    Always,
200}
201
202impl<I: Interner> RerunCondition<I> {
203    /// Merge two rerun states according to the following transition diagram
204    /// (some cells are empty because the table is symmetric, i.e. `a.merge(b)` == `b.merge(a)`).
205    ///
206    /// - "self" here means the current state, i.e. the state of the current column
207    /// - square brackets represents that this is a list of things. Even if the state doesn't
208    /// change, we might grow the list to effectively end up in a different state anyway
209    /// - `[o. in s.]` abbreviates "opaque in storage"
210    ///
211    ///
212    /// |                                 | never  | always | [opaque in storage] | opaque has infer as hidden | [o. in s.] or i. as hidden |
213    /// | ------------------------------- | ------ | ------ | ------------------- | -------------------------- | -------------------------- |
214    /// | never                           | self   | self   | self                | self                       | self                       |
215    /// | always                          |        | always | always              | always                     | always                     |
216    /// | [opaque in storage]             |        |        | concat self         | [o. in s.] or i. as hidden | concat to self             |
217    /// | opaque has infer as hidden type |        |        |                     | self                       | to self                    |
218    ///
219    fn merge(self, other: Self) -> Self {
220        let merged = match (self, other) {
221            (Self::Never, other) | (other, Self::Never) => other,
222            (Self::Always, _) | (_, Self::Always) => Self::Always,
223
224            (Self::OpaqueInStorage(a), Self::OpaqueInStorage(b)) => {
225                a.union(b).map(Self::OpaqueInStorage).unwrap_or(Self::Always)
226            }
227            (Self::AnyOpaqueHasInferAsHidden, Self::AnyOpaqueHasInferAsHidden) => {
228                Self::AnyOpaqueHasInferAsHidden
229            }
230            (
231                Self::AnyOpaqueHasInferAsHidden,
232                Self::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(a),
233            )
234            | (
235                Self::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(a),
236                Self::AnyOpaqueHasInferAsHidden,
237            ) => Self::OpaqueInStorage(a),
238
239            (
240                Self::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(a),
241                Self::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(b),
242            ) => a
243                .union(b)
244                .map(Self::OpaqueInStorageOrAnyOpaqueHasInferAsHidden)
245                .unwrap_or(Self::Always),
246
247            (Self::OpaqueInStorage(a), Self::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(b))
248            | (Self::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(b), Self::OpaqueInStorage(a)) => a
249                .union(b)
250                .map(Self::OpaqueInStorageOrAnyOpaqueHasInferAsHidden)
251                .unwrap_or(Self::Always),
252
253            (Self::OpaqueInStorage(a), Self::AnyOpaqueHasInferAsHidden)
254            | (Self::AnyOpaqueHasInferAsHidden, Self::OpaqueInStorage(a)) => {
255                Self::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(a)
256            }
257        };
258        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/75a75c3e0a67d3fa3d03982775f5bb0356e7b510/compiler/rustc_type_ir/src/solve/mod.rs:258",
                        "rustc_type_ir::solve", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/75a75c3e0a67d3fa3d03982775f5bb0356e7b510/compiler/rustc_type_ir/src/solve/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(258u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_type_ir::solve"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("merging rerun state {0:?} + {1:?} => {2:?}",
                                                    self, other, merged) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("merging rerun state {self:?} + {other:?} => {merged:?}");
259        merged
260    }
261
262    #[must_use]
263    fn should_bail(&self) -> Result<(), RerunNonErased> {
264        match self {
265            Self::Always => Err(RerunNonErased(())),
266            Self::Never
267            | Self::OpaqueInStorage(_)
268            | Self::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(_)
269            | Self::AnyOpaqueHasInferAsHidden => Ok(()),
270        }
271    }
272
273    /// Returns true when any access of opaques was attempted.
274    /// i.e. when `self != Self::Never`
275    #[must_use]
276    fn might_rerun(&self) -> bool {
277        match self {
278            Self::Never => false,
279            Self::Always
280            | Self::OpaqueInStorageOrAnyOpaqueHasInferAsHidden(_)
281            | Self::OpaqueInStorage(_)
282            | Self::AnyOpaqueHasInferAsHidden => true,
283        }
284    }
285}
286
287/// Mainly for debugging, to keep track of the source of the rerunning
288/// in [`TypingMode::ErasedNotCoherence`].
289#[derive(#[automatically_derived]
impl ::core::marker::Copy for RerunReason { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for RerunReason { }
#[automatically_derived]
impl ::core::clone::Clone for RerunReason {
    #[inline]
    fn clone(&self) -> Self { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for RerunReason {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                RerunReason::NormalizeOpaqueTypeRemoteCrate =>
                    "NormalizeOpaqueTypeRemoteCrate",
                RerunReason::NormalizeOpaqueType => "NormalizeOpaqueType",
                RerunReason::MayUseUnstableFeature => "MayUseUnstableFeature",
                RerunReason::EvaluateConst => "EvaluateConst",
                RerunReason::SkipErasedAttempt => "SkipErasedAttempt",
                RerunReason::SelfTyInfer => "SelfTyInfer",
                RerunReason::FetchEligibleAssocItem =>
                    "FetchEligibleAssocItem",
                RerunReason::AutoTraitLeakage => "AutoTraitLeakage",
                RerunReason::TryStallCoroutine => "TryStallCoroutine",
            })
    }
}Debug, #[automatically_derived]
impl ::core::hash::Hash for RerunReason {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
            state)
    }
}Hash, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for RerunReason { }
#[automatically_derived]
impl ::core::cmp::PartialEq for RerunReason {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
            ::core::intrinsics::discriminant_value(other)
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for RerunReason { }Eq)]
290#[derive(const _: () =
    {
        impl<I> ::rustc_type_ir::TypeVisitable<I> for RerunReason where
            I: Interner {
            fn visit_with<__V: ::rustc_type_ir::TypeVisitor<I>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    RerunReason::NormalizeOpaqueTypeRemoteCrate => {}
                    RerunReason::NormalizeOpaqueType => {}
                    RerunReason::MayUseUnstableFeature => {}
                    RerunReason::EvaluateConst => {}
                    RerunReason::SkipErasedAttempt => {}
                    RerunReason::SelfTyInfer => {}
                    RerunReason::FetchEligibleAssocItem => {}
                    RerunReason::AutoTraitLeakage => {}
                    RerunReason::TryStallCoroutine => {}
                }
                <__V::Result as ::rustc_type_ir::VisitorResult>::output()
            }
        }
    };TypeVisitable_Generic, const _: () =
    {
        unsafe impl<__V> ::rustc_type_ir::GenericTypeVisitable<__V> for
            RerunReason {
            fn generic_visit_with(&self, __visitor: &mut __V) {
                match *self {
                    RerunReason::NormalizeOpaqueTypeRemoteCrate => {}
                    RerunReason::NormalizeOpaqueType => {}
                    RerunReason::MayUseUnstableFeature => {}
                    RerunReason::EvaluateConst => {}
                    RerunReason::SkipErasedAttempt => {}
                    RerunReason::SelfTyInfer => {}
                    RerunReason::FetchEligibleAssocItem => {}
                    RerunReason::AutoTraitLeakage => {}
                    RerunReason::TryStallCoroutine => {}
                }
            }
        }
    };GenericTypeVisitable)]
291#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for RerunReason
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    RerunReason::NormalizeOpaqueTypeRemoteCrate => {}
                    RerunReason::NormalizeOpaqueType => {}
                    RerunReason::MayUseUnstableFeature => {}
                    RerunReason::EvaluateConst => {}
                    RerunReason::SkipErasedAttempt => {}
                    RerunReason::SelfTyInfer => {}
                    RerunReason::FetchEligibleAssocItem => {}
                    RerunReason::AutoTraitLeakage => {}
                    RerunReason::TryStallCoroutine => {}
                }
            }
        }
    };StableHash_NoContext))]
292pub enum RerunReason {
293    NormalizeOpaqueTypeRemoteCrate,
294    NormalizeOpaqueType,
295    MayUseUnstableFeature,
296    EvaluateConst,
297    SkipErasedAttempt,
298    SelfTyInfer,
299    FetchEligibleAssocItem,
300    AutoTraitLeakage,
301    TryStallCoroutine,
302}
303
304#[automatically_derived]
impl<I: Interner> ::core::marker::Copy for AccessedOpaques<I> where
    I: Interner {
}
#[automatically_derived]
impl<I: Interner> ::core::clone::Clone for AccessedOpaques<I> where
    I: Interner {
    #[inline]
    fn clone(&self) -> Self { *self }
}
#[automatically_derived]
impl<I: Interner> ::core::fmt::Debug for AccessedOpaques<I> where I: Interner
    {
    fn fmt(&self, __f: &mut ::core::fmt::Formatter<'_>)
        -> ::core::fmt::Result {
        match self {
            AccessedOpaques {
                reason: ref __field_reason, rerun: ref __field_rerun } => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_struct(__f,
                        "AccessedOpaques");
                ::core::fmt::DebugStruct::field(&mut __builder, "reason",
                    __field_reason);
                ::core::fmt::DebugStruct::field(&mut __builder, "rerun",
                    __field_rerun);
                ::core::fmt::DebugStruct::finish(&mut __builder)
            }
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::hash::Hash for AccessedOpaques<I> where I: Interner
    {
    fn hash<__H: ::core::hash::Hasher>(&self, __state: &mut __H) {
        match self {
            AccessedOpaques {
                reason: ref __field_reason, rerun: ref __field_rerun } => {
                ::core::hash::Hash::hash(__field_reason, __state);
                ::core::hash::Hash::hash(__field_rerun, __state);
            }
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::cmp::PartialEq for AccessedOpaques<I> where
    I: Interner {
    #[inline]
    fn eq(&self, __other: &Self) -> ::core::primitive::bool {
        match (self, __other) {
            (AccessedOpaques {
                reason: ref __field_reason, rerun: ref __field_rerun },
                AccessedOpaques {
                reason: ref __other_field_reason,
                rerun: ref __other_field_rerun }) =>
                true &&
                        ::core::cmp::PartialEq::eq(__field_reason,
                            __other_field_reason) &&
                    ::core::cmp::PartialEq::eq(__field_rerun,
                        __other_field_rerun),
        }
    }
}
const _: () =
    {
        trait DeriveWhereAssertEq {
            fn assert(&self);
        }
        impl<I: Interner> DeriveWhereAssertEq for AccessedOpaques<I> where
            I: Interner {
            fn assert(&self) {
                struct __AssertEq<__T: ::core::cmp::Eq +
                    ?::core::marker::Sized>(::core::marker::PhantomData<__T>);
                let _: __AssertEq<Option<RerunReason>>;
                let _: __AssertEq<RerunCondition<I>>;
            }
        }
    };
#[automatically_derived]
impl<I: Interner> ::core::cmp::Eq for AccessedOpaques<I> where I: Interner { }#[derive_where(Copy, Clone, Debug, Hash, PartialEq, Eq; I: Interner)]
305#[derive(const _: () =
    {
        impl<I: Interner> ::rustc_type_ir::TypeVisitable<I> for
            AccessedOpaques<I> where I: Interner,
            RerunCondition<I>: ::rustc_type_ir::TypeVisitable<I> {
            fn visit_with<__V: ::rustc_type_ir::TypeVisitor<I>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    AccessedOpaques { rerun: ref __binding_1, .. } => {
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_type_ir::VisitorResult>::output()
            }
        }
    };TypeVisitable_Generic, const _: () =
    {
        impl<I: Interner> ::rustc_type_ir::TypeFoldable<I> for
            AccessedOpaques<I> where I: Interner,
            RerunCondition<I>: ::rustc_type_ir::TypeFoldable<I> {
            fn try_fold_with<__F: ::rustc_type_ir::FallibleTypeFolder<I>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        AccessedOpaques { reason: __binding_0, rerun: __binding_1 }
                            => {
                            AccessedOpaques {
                                reason: __binding_0,
                                rerun: ::rustc_type_ir::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_type_ir::TypeFolder<I>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    AccessedOpaques { reason: __binding_0, rerun: __binding_1 }
                        => {
                        AccessedOpaques {
                            reason: __binding_0,
                            rerun: ::rustc_type_ir::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable_Generic, const _: () =
    {
        unsafe impl<I: Interner, __V>
            ::rustc_type_ir::GenericTypeVisitable<__V> for AccessedOpaques<I>
            where
            Option<RerunReason>: ::rustc_type_ir::GenericTypeVisitable<__V>,
            RerunCondition<I>: ::rustc_type_ir::GenericTypeVisitable<__V> {
            fn generic_visit_with(&self, __visitor: &mut __V) {
                match *self {
                    AccessedOpaques {
                        reason: ref __binding_0, rerun: ref __binding_1 } => {
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_0,
                                __visitor);
                        }
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_1,
                                __visitor);
                        }
                    }
                }
            }
        }
    };GenericTypeVisitable)]
306#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl<I: Interner> ::rustc_data_structures::stable_hash::StableHash for
            AccessedOpaques<I> where
            RerunCondition<I>: ::rustc_data_structures::stable_hash::StableHash
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    AccessedOpaques {
                        reason: ref __binding_0, rerun: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash_NoContext))]
307pub struct AccessedOpaques<I: Interner> {
308    #[cfg_attr(feature = "nightly", type_visitable(ignore))]
309    #[type_foldable(identity)]
310    pub reason: Option<RerunReason>,
311    pub rerun: RerunCondition<I>,
312}
313
314impl<I: Interner> Default for AccessedOpaques<I> {
315    fn default() -> Self {
316        Self { reason: None, rerun: RerunCondition::Never }
317    }
318}
319
320impl<I: Interner> AccessedOpaques<I> {
321    pub fn update(&mut self, other: Self) -> Result<(), RerunNonErased> {
322        *self = Self {
323            // prefer the newest reason
324            reason: other.reason.or(self.reason),
325            // merging accessed states can only result in MultipleOrUnknown
326            rerun: self.rerun.merge(other.rerun),
327        };
328
329        self.should_bail()
330    }
331
332    #[must_use]
333    pub fn might_rerun(&self) -> bool {
334        self.rerun.might_rerun()
335    }
336
337    #[must_use]
338    pub fn should_bail(&self) -> Result<(), RerunNonErased> {
339        self.rerun.should_bail()
340    }
341
342    pub fn rerun_always(&mut self, reason: RerunReason) -> Result<Infallible, RerunNonErased> {
343        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/75a75c3e0a67d3fa3d03982775f5bb0356e7b510/compiler/rustc_type_ir/src/solve/mod.rs:343",
                        "rustc_type_ir::solve", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/75a75c3e0a67d3fa3d03982775f5bb0356e7b510/compiler/rustc_type_ir/src/solve/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(343u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_type_ir::solve"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("set rerun always")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("set rerun always");
344        match self.update(AccessedOpaques { reason: Some(reason), rerun: RerunCondition::Always }) {
345            Ok(_) => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
346            Err(e) => Err(e),
347        }
348    }
349
350    pub fn rerun_if_in_post_analysis(&mut self, reason: RerunReason) -> Result<(), RerunNonErased> {
351        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/75a75c3e0a67d3fa3d03982775f5bb0356e7b510/compiler/rustc_type_ir/src/solve/mod.rs:351",
                        "rustc_type_ir::solve", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/75a75c3e0a67d3fa3d03982775f5bb0356e7b510/compiler/rustc_type_ir/src/solve/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(351u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_type_ir::solve"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("set rerun if post analysis")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("set rerun if post analysis");
352        self.update(AccessedOpaques {
353            reason: Some(reason),
354            rerun: RerunCondition::OpaqueInStorage(SmallCopySet::empty()),
355        })
356    }
357
358    pub fn rerun_if_opaque_in_opaque_type_storage(
359        &mut self,
360        reason: RerunReason,
361        defid: I::LocalOpaqueTyId,
362    ) -> Result<(), RerunNonErased> {
363        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/75a75c3e0a67d3fa3d03982775f5bb0356e7b510/compiler/rustc_type_ir/src/solve/mod.rs:363",
                        "rustc_type_ir::solve", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/75a75c3e0a67d3fa3d03982775f5bb0356e7b510/compiler/rustc_type_ir/src/solve/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(363u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_type_ir::solve"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("set rerun if opaque type {0:?} in storage",
                                                    defid) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("set rerun if opaque type {defid:?} in storage");
364        self.update(AccessedOpaques {
365            reason: Some(reason),
366            rerun: RerunCondition::OpaqueInStorage(SmallCopySet::new(defid.into())),
367        })
368    }
369
370    pub fn rerun_if_any_opaque_has_infer_as_hidden_type(
371        &mut self,
372        reason: RerunReason,
373    ) -> Result<(), RerunNonErased> {
374        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/75a75c3e0a67d3fa3d03982775f5bb0356e7b510/compiler/rustc_type_ir/src/solve/mod.rs:374",
                        "rustc_type_ir::solve", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/75a75c3e0a67d3fa3d03982775f5bb0356e7b510/compiler/rustc_type_ir/src/solve/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(374u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_type_ir::solve"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("set rerun if any opaque in the storage has a hidden type that is an infer var")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("set rerun if any opaque in the storage has a hidden type that is an infer var");
375        self.update(AccessedOpaques {
376            reason: Some(reason),
377            rerun: RerunCondition::AnyOpaqueHasInferAsHidden,
378        })
379    }
380}
381
382/// A goal is a statement, i.e. `predicate`, we want to prove
383/// given some assumptions, i.e. `param_env`.
384///
385/// Most of the time the `param_env` contains the `where`-bounds of the function
386/// we're currently typechecking while the `predicate` is some trait bound.
387#[automatically_derived]
impl<I: Interner, P> ::core::clone::Clone for Goal<I, P> where I: Interner,
    P: ::core::clone::Clone {
    #[inline]
    fn clone(&self) -> Self {
        match self {
            Goal {
                param_env: ref __field_param_env,
                predicate: ref __field_predicate } =>
                Goal {
                    param_env: ::core::clone::Clone::clone(__field_param_env),
                    predicate: ::core::clone::Clone::clone(__field_predicate),
                },
        }
    }
}
#[automatically_derived]
impl<I: Interner, P> ::core::hash::Hash for Goal<I, P> where I: Interner,
    P: ::core::hash::Hash {
    fn hash<__H: ::core::hash::Hasher>(&self, __state: &mut __H) {
        match self {
            Goal {
                param_env: ref __field_param_env,
                predicate: ref __field_predicate } => {
                ::core::hash::Hash::hash(__field_param_env, __state);
                ::core::hash::Hash::hash(__field_predicate, __state);
            }
        }
    }
}
#[automatically_derived]
impl<I: Interner, P> ::core::cmp::PartialEq for Goal<I, P> where I: Interner,
    P: ::core::cmp::PartialEq {
    #[inline]
    fn eq(&self, __other: &Self) -> ::core::primitive::bool {
        match (self, __other) {
            (Goal {
                param_env: ref __field_param_env,
                predicate: ref __field_predicate }, Goal {
                param_env: ref __other_field_param_env,
                predicate: ref __other_field_predicate }) =>
                true &&
                        ::core::cmp::PartialEq::eq(__field_param_env,
                            __other_field_param_env) &&
                    ::core::cmp::PartialEq::eq(__field_predicate,
                        __other_field_predicate),
        }
    }
}
#[automatically_derived]
impl<I: Interner, P> ::core::fmt::Debug for Goal<I, P> where I: Interner,
    P: ::core::fmt::Debug {
    fn fmt(&self, __f: &mut ::core::fmt::Formatter<'_>)
        -> ::core::fmt::Result {
        match self {
            Goal {
                param_env: ref __field_param_env,
                predicate: ref __field_predicate } => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_struct(__f, "Goal");
                ::core::fmt::DebugStruct::field(&mut __builder, "param_env",
                    __field_param_env);
                ::core::fmt::DebugStruct::field(&mut __builder, "predicate",
                    __field_predicate);
                ::core::fmt::DebugStruct::finish(&mut __builder)
            }
        }
    }
}
#[automatically_derived]
impl<I: Interner, P> ::core::marker::Copy for Goal<I, P> where I: Interner,
    P: Copy {
}#[derive_where(Clone, Hash, PartialEq, Debug; I: Interner, P)]
388#[derive_where(Copy; I: Interner, P: Copy)]
389#[derive(const _: () =
    {
        impl<I: Interner, P> ::rustc_type_ir::TypeVisitable<I> for Goal<I, P>
            where I: Interner, I::ParamEnv: ::rustc_type_ir::TypeVisitable<I>,
            P: ::rustc_type_ir::TypeVisitable<I> {
            fn visit_with<__V: ::rustc_type_ir::TypeVisitor<I>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    Goal {
                        param_env: ref __binding_0, predicate: ref __binding_1 } =>
                        {
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_type_ir::VisitorResult>::output()
            }
        }
    };TypeVisitable_Generic, const _: () =
    {
        impl<I: Interner, P> ::rustc_type_ir::TypeFoldable<I> for Goal<I, P>
            where I: Interner, P: ::rustc_type_ir::TypeFoldable<I>,
            I::ParamEnv: ::rustc_type_ir::TypeFoldable<I>,
            P: ::rustc_type_ir::TypeFoldable<I> {
            fn try_fold_with<__F: ::rustc_type_ir::FallibleTypeFolder<I>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        Goal { param_env: __binding_0, predicate: __binding_1 } => {
                            Goal {
                                param_env: ::rustc_type_ir::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                predicate: ::rustc_type_ir::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_type_ir::TypeFolder<I>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    Goal { param_env: __binding_0, predicate: __binding_1 } => {
                        Goal {
                            param_env: ::rustc_type_ir::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            predicate: ::rustc_type_ir::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable_Generic, const _: () =
    {
        impl<I: Interner, P, J> ::rustc_type_ir::lift::Lift<J> for Goal<I, P>
            where J: Interner, I: ::rustc_type_ir::LiftInto<J>,
            P: ::rustc_type_ir::lift::Lift<J> {
            type Lifted =
                Goal<J, <P as ::rustc_type_ir::lift::Lift<J>>::Lifted>;
            fn lift_to_interner(self, interner: J) -> Self::Lifted {
                match self {
                    Goal { param_env: __binding_0, predicate: __binding_1 } => {
                        Goal {
                            param_env: __binding_0.lift_to_interner(interner),
                            predicate: __binding_1.lift_to_interner(interner),
                        }
                    }
                }
            }
        }
    };Lift_Generic, const _: () =
    {
        unsafe impl<I: Interner, P, __V>
            ::rustc_type_ir::GenericTypeVisitable<__V> for Goal<I, P> where
            I::ParamEnv: ::rustc_type_ir::GenericTypeVisitable<__V>,
            P: ::rustc_type_ir::GenericTypeVisitable<__V> {
            fn generic_visit_with(&self, __visitor: &mut __V) {
                match *self {
                    Goal {
                        param_env: ref __binding_0, predicate: ref __binding_1 } =>
                        {
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_0,
                                __visitor);
                        }
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_1,
                                __visitor);
                        }
                    }
                }
            }
        }
    };GenericTypeVisitable)]
390#[cfg_attr(
391    feature = "nightly",
392    derive(const _: () =
    {
        impl<I: Interner, P, __D: ::rustc_serialize::Decoder>
            ::rustc_serialize::Decodable<__D> for Goal<I, P> where
            I::ParamEnv: ::rustc_serialize::Decodable<__D>,
            P: ::rustc_serialize::Decodable<__D> {
            fn decode(__decoder: &mut __D) -> Self {
                Goal {
                    param_env: ::rustc_serialize::Decodable::decode(__decoder),
                    predicate: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable_NoContext, const _: () =
    {
        impl<I: Interner, P, __E: ::rustc_serialize::Encoder>
            ::rustc_serialize::Encodable<__E> for Goal<I, P> where
            I::ParamEnv: ::rustc_serialize::Encodable<__E>,
            P: ::rustc_serialize::Encodable<__E> {
            fn encode(&self, __encoder: &mut __E) {
                let Goal {
                        param_env: ref __binding_0, predicate: ref __binding_1 } =
                    *self;
                ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                    __encoder);
                ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                    __encoder);
            }
        }
    };Encodable_NoContext, const _: () =
    {
        impl<I: Interner, P> ::rustc_data_structures::stable_hash::StableHash
            for Goal<I, P> where
            I::ParamEnv: ::rustc_data_structures::stable_hash::StableHash,
            P: ::rustc_data_structures::stable_hash::StableHash {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Goal {
                        param_env: ref __binding_0, predicate: ref __binding_1 } =>
                        {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash_NoContext)
393)]
394pub struct Goal<I: Interner, P> {
395    pub param_env: I::ParamEnv,
396    pub predicate: P,
397}
398
399impl<I: Interner, P: Eq> Eq for Goal<I, P> {}
400
401impl<I: Interner, P> Goal<I, P> {
402    pub fn new(cx: I, param_env: I::ParamEnv, predicate: impl Upcast<I, P>) -> Goal<I, P> {
403        Goal { param_env, predicate: predicate.upcast(cx) }
404    }
405
406    /// Updates the goal to one with a different `predicate` but the same `param_env`.
407    pub fn with<Q>(self, cx: I, predicate: impl Upcast<I, Q>) -> Goal<I, Q> {
408        Goal { param_env: self.param_env, predicate: predicate.upcast(cx) }
409    }
410}
411
412/// Why a specific goal has to be proven.
413///
414/// This is necessary as we treat nested goals different depending on
415/// their source. This is used to decide whether a cycle is coinductive.
416/// See the documentation of `EvalCtxt::step_kind_for_source` for more details
417/// about this.
418///
419/// It is also used by proof tree visitors, e.g. for diagnostics purposes.
420#[derive(#[automatically_derived]
impl ::core::marker::Copy for GoalSource { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for GoalSource { }
#[automatically_derived]
impl ::core::clone::Clone for GoalSource {
    #[inline]
    fn clone(&self) -> Self {
        let _: ::core::clone::AssertParamIsClone<PathKind>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for GoalSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Self::Misc => ::core::fmt::Formatter::write_str(f, "Misc"),
            Self::TypeRelating =>
                ::core::fmt::Formatter::write_str(f, "TypeRelating"),
            Self::ImplWhereBound =>
                ::core::fmt::Formatter::write_str(f, "ImplWhereBound"),
            Self::AliasBoundConstCondition =>
                ::core::fmt::Formatter::write_str(f,
                    "AliasBoundConstCondition"),
            Self::AliasWellFormed =>
                ::core::fmt::Formatter::write_str(f, "AliasWellFormed"),
            Self::NormalizeGoal(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "NormalizeGoal", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for GoalSource { }
#[automatically_derived]
impl ::core::cmp::PartialEq for GoalSource {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
                ::core::intrinsics::discriminant_value(other) &&
            match (self, other) {
                (Self::NormalizeGoal(__self_0), Self::NormalizeGoal(__arg1_0))
                    => __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for GoalSource {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<PathKind>;
    }
}Eq, #[automatically_derived]
impl ::core::hash::Hash for GoalSource {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
            state);
        match self {
            Self::NormalizeGoal(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            _ => {}
        }
    }
}Hash)]
421#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for GoalSource {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    GoalSource::Misc => {}
                    GoalSource::TypeRelating => {}
                    GoalSource::ImplWhereBound => {}
                    GoalSource::AliasBoundConstCondition => {}
                    GoalSource::AliasWellFormed => {}
                    GoalSource::NormalizeGoal(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash))]
422pub enum GoalSource {
423    Misc,
424    /// A nested goal required to prove that types are equal/subtypes.
425    /// This is always an unproductive step.
426    ///
427    /// This is also used for all `NormalizesTo` goals as we they are used
428    /// to relate types in `AliasRelate`.
429    TypeRelating,
430    /// We're proving a where-bound of an impl.
431    ImplWhereBound,
432    /// Const conditions that need to hold for `[const]` alias bounds to hold.
433    AliasBoundConstCondition,
434    /// Predicate required for an alias projection to be well-formed.
435    /// This is used in three places:
436    /// 1. projecting to an opaque whose hidden type is already registered in
437    ///    the opaque type storage,
438    /// 2. for rigid projections's trait goal,
439    /// 3. for GAT where clauses.
440    AliasWellFormed,
441    /// In case normalizing aliases in nested goals cycles, eagerly normalizing these
442    /// aliases in the context of the parent may incorrectly change the cycle kind.
443    /// Normalizing aliases in goals therefore tracks the original path kind for this
444    /// nested goal. See the comment of the `ReplaceAliasWithInfer` visitor for more
445    /// details.
446    NormalizeGoal(PathKind),
447}
448
449#[automatically_derived]
impl<I: Interner, P> ::core::clone::Clone for QueryInput<I, P> where
    I: Interner, Goal<I, P>: ::core::clone::Clone {
    #[inline]
    fn clone(&self) -> Self {
        match self {
            QueryInput {
                goal: ref __field_goal,
                predefined_opaques_in_body: ref __field_predefined_opaques_in_body
                } =>
                QueryInput {
                    goal: ::core::clone::Clone::clone(__field_goal),
                    predefined_opaques_in_body: ::core::clone::Clone::clone(__field_predefined_opaques_in_body),
                },
        }
    }
}
#[automatically_derived]
impl<I: Interner, P> ::core::hash::Hash for QueryInput<I, P> where
    I: Interner, Goal<I, P>: ::core::hash::Hash {
    fn hash<__H: ::core::hash::Hasher>(&self, __state: &mut __H) {
        match self {
            QueryInput {
                goal: ref __field_goal,
                predefined_opaques_in_body: ref __field_predefined_opaques_in_body
                } => {
                ::core::hash::Hash::hash(__field_goal, __state);
                ::core::hash::Hash::hash(__field_predefined_opaques_in_body,
                    __state);
            }
        }
    }
}
#[automatically_derived]
impl<I: Interner, P> ::core::cmp::PartialEq for QueryInput<I, P> where
    I: Interner, Goal<I, P>: ::core::cmp::PartialEq {
    #[inline]
    fn eq(&self, __other: &Self) -> ::core::primitive::bool {
        match (self, __other) {
            (QueryInput {
                goal: ref __field_goal,
                predefined_opaques_in_body: ref __field_predefined_opaques_in_body
                }, QueryInput {
                goal: ref __other_field_goal,
                predefined_opaques_in_body: ref __other_field_predefined_opaques_in_body
                }) =>
                true &&
                        ::core::cmp::PartialEq::eq(__field_goal, __other_field_goal)
                    &&
                    ::core::cmp::PartialEq::eq(__field_predefined_opaques_in_body,
                        __other_field_predefined_opaques_in_body),
        }
    }
}
#[automatically_derived]
impl<I: Interner, P> ::core::fmt::Debug for QueryInput<I, P> where
    I: Interner, Goal<I, P>: ::core::fmt::Debug {
    fn fmt(&self, __f: &mut ::core::fmt::Formatter<'_>)
        -> ::core::fmt::Result {
        match self {
            QueryInput {
                goal: ref __field_goal,
                predefined_opaques_in_body: ref __field_predefined_opaques_in_body
                } => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_struct(__f, "QueryInput");
                ::core::fmt::DebugStruct::field(&mut __builder, "goal",
                    __field_goal);
                ::core::fmt::DebugStruct::field(&mut __builder,
                    "predefined_opaques_in_body",
                    __field_predefined_opaques_in_body);
                ::core::fmt::DebugStruct::finish(&mut __builder)
            }
        }
    }
}
#[automatically_derived]
impl<I: Interner, P> ::core::marker::Copy for QueryInput<I, P> where
    I: Interner, Goal<I, P>: Copy {
}#[derive_where(Clone, Hash, PartialEq, Debug; I: Interner, Goal<I, P>)]
450#[derive_where(Copy; I: Interner, Goal<I, P>: Copy)]
451#[derive(const _: () =
    {
        impl<I: Interner, P> ::rustc_type_ir::TypeVisitable<I> for
            QueryInput<I, P> where I: Interner,
            Goal<I, P>: ::rustc_type_ir::TypeVisitable<I>,
            I::PredefinedOpaques: ::rustc_type_ir::TypeVisitable<I> {
            fn visit_with<__V: ::rustc_type_ir::TypeVisitor<I>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    QueryInput {
                        goal: ref __binding_0,
                        predefined_opaques_in_body: ref __binding_1 } => {
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_type_ir::VisitorResult>::output()
            }
        }
    };TypeVisitable_Generic, const _: () =
    {
        impl<I: Interner, P> ::rustc_type_ir::TypeFoldable<I> for
            QueryInput<I, P> where I: Interner,
            P: ::rustc_type_ir::TypeFoldable<I>,
            Goal<I, P>: ::rustc_type_ir::TypeFoldable<I>,
            I::PredefinedOpaques: ::rustc_type_ir::TypeFoldable<I> {
            fn try_fold_with<__F: ::rustc_type_ir::FallibleTypeFolder<I>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        QueryInput {
                            goal: __binding_0, predefined_opaques_in_body: __binding_1 }
                            => {
                            QueryInput {
                                goal: ::rustc_type_ir::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                predefined_opaques_in_body: ::rustc_type_ir::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_type_ir::TypeFolder<I>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    QueryInput {
                        goal: __binding_0, predefined_opaques_in_body: __binding_1 }
                        => {
                        QueryInput {
                            goal: ::rustc_type_ir::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            predefined_opaques_in_body: ::rustc_type_ir::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable_Generic, const _: () =
    {
        unsafe impl<I: Interner, P, __V>
            ::rustc_type_ir::GenericTypeVisitable<__V> for QueryInput<I, P>
            where Goal<I, P>: ::rustc_type_ir::GenericTypeVisitable<__V>,
            I::PredefinedOpaques: ::rustc_type_ir::GenericTypeVisitable<__V> {
            fn generic_visit_with(&self, __visitor: &mut __V) {
                match *self {
                    QueryInput {
                        goal: ref __binding_0,
                        predefined_opaques_in_body: ref __binding_1 } => {
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_0,
                                __visitor);
                        }
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_1,
                                __visitor);
                        }
                    }
                }
            }
        }
    };GenericTypeVisitable)]
452#[cfg_attr(
453    feature = "nightly",
454    derive(const _: () =
    {
        impl<I: Interner, P, __D: ::rustc_serialize::Decoder>
            ::rustc_serialize::Decodable<__D> for QueryInput<I, P> where
            Goal<I, P>: ::rustc_serialize::Decodable<__D>,
            I::PredefinedOpaques: ::rustc_serialize::Decodable<__D> {
            fn decode(__decoder: &mut __D) -> Self {
                QueryInput {
                    goal: ::rustc_serialize::Decodable::decode(__decoder),
                    predefined_opaques_in_body: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable_NoContext, const _: () =
    {
        impl<I: Interner, P, __E: ::rustc_serialize::Encoder>
            ::rustc_serialize::Encodable<__E> for QueryInput<I, P> where
            Goal<I, P>: ::rustc_serialize::Encodable<__E>,
            I::PredefinedOpaques: ::rustc_serialize::Encodable<__E> {
            fn encode(&self, __encoder: &mut __E) {
                let QueryInput {
                        goal: ref __binding_0,
                        predefined_opaques_in_body: ref __binding_1 } = *self;
                ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                    __encoder);
                ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                    __encoder);
            }
        }
    };Encodable_NoContext, const _: () =
    {
        impl<I: Interner, P> ::rustc_data_structures::stable_hash::StableHash
            for QueryInput<I, P> where
            Goal<I, P>: ::rustc_data_structures::stable_hash::StableHash,
            I::PredefinedOpaques: ::rustc_data_structures::stable_hash::StableHash
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    QueryInput {
                        goal: ref __binding_0,
                        predefined_opaques_in_body: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash_NoContext)
455)]
456pub struct QueryInput<I: Interner, P> {
457    pub goal: Goal<I, P>,
458    pub predefined_opaques_in_body: I::PredefinedOpaques,
459}
460
461impl<I: Interner, P: Eq> Eq for QueryInput<I, P> {}
462
463/// Which trait candidates should be preferred over other candidates? By default, prefer where
464/// bounds over alias bounds. For marker traits, prefer alias bounds over where bounds.
465#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for CandidatePreferenceMode { }
#[automatically_derived]
impl ::core::clone::Clone for CandidatePreferenceMode {
    #[inline]
    fn clone(&self) -> Self { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for CandidatePreferenceMode { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for CandidatePreferenceMode {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                CandidatePreferenceMode::Default => "Default",
                CandidatePreferenceMode::Marker => "Marker",
            })
    }
}Debug)]
466pub enum CandidatePreferenceMode {
467    /// Prefers where bounds over alias bounds
468    Default,
469    /// Prefers alias bounds over where bounds
470    Marker,
471}
472
473impl CandidatePreferenceMode {
474    /// Given `trait_def_id`, which candidate preference mode should be used?
475    pub fn compute<I: Interner>(cx: I, trait_id: I::TraitId) -> CandidatePreferenceMode {
476        let is_sizedness_or_auto_or_default_goal = cx.is_sizedness_trait(trait_id)
477            || cx.trait_is_auto(trait_id)
478            || cx.is_default_trait(trait_id);
479        if is_sizedness_or_auto_or_default_goal {
480            CandidatePreferenceMode::Marker
481        } else {
482            CandidatePreferenceMode::Default
483        }
484    }
485}
486
487/// Possible ways the given goal can be proven.
488#[automatically_derived]
impl<I: Interner> ::core::clone::Clone for CandidateSource<I> where
    I: Interner {
    #[inline]
    fn clone(&self) -> Self { *self }
}
#[automatically_derived]
impl<I: Interner> ::core::marker::Copy for CandidateSource<I> where
    I: Interner {
}
#[automatically_derived]
impl<I: Interner> ::core::hash::Hash for CandidateSource<I> where I: Interner
    {
    fn hash<__H: ::core::hash::Hasher>(&self, __state: &mut __H) {
        match self {
            CandidateSource::Impl(ref __field_0) => {
                ::core::hash::Hash::hash(&::core::mem::discriminant(self),
                    __state);
                ::core::hash::Hash::hash(__field_0, __state);
            }
            CandidateSource::BuiltinImpl(ref __field_0) => {
                ::core::hash::Hash::hash(&::core::mem::discriminant(self),
                    __state);
                ::core::hash::Hash::hash(__field_0, __state);
            }
            CandidateSource::ParamEnv(ref __field_0) => {
                ::core::hash::Hash::hash(&::core::mem::discriminant(self),
                    __state);
                ::core::hash::Hash::hash(__field_0, __state);
            }
            CandidateSource::AliasBound(ref __field_0) => {
                ::core::hash::Hash::hash(&::core::mem::discriminant(self),
                    __state);
                ::core::hash::Hash::hash(__field_0, __state);
            }
            CandidateSource::CoherenceUnknowable => {
                ::core::hash::Hash::hash(&::core::mem::discriminant(self),
                    __state);
            }
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::cmp::PartialEq for CandidateSource<I> where
    I: Interner {
    #[inline]
    fn eq(&self, __other: &Self) -> ::core::primitive::bool {
        if ::core::mem::discriminant(self) ==
                ::core::mem::discriminant(__other) {
            match (self, __other) {
                (CandidateSource::Impl(ref __field_0),
                    CandidateSource::Impl(ref __other_field_0)) =>
                    true &&
                        ::core::cmp::PartialEq::eq(__field_0, __other_field_0),
                (CandidateSource::BuiltinImpl(ref __field_0),
                    CandidateSource::BuiltinImpl(ref __other_field_0)) =>
                    true &&
                        ::core::cmp::PartialEq::eq(__field_0, __other_field_0),
                (CandidateSource::ParamEnv(ref __field_0),
                    CandidateSource::ParamEnv(ref __other_field_0)) =>
                    true &&
                        ::core::cmp::PartialEq::eq(__field_0, __other_field_0),
                (CandidateSource::AliasBound(ref __field_0),
                    CandidateSource::AliasBound(ref __other_field_0)) =>
                    true &&
                        ::core::cmp::PartialEq::eq(__field_0, __other_field_0),
                _ => true,
            }
        } else { false }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::fmt::Debug for CandidateSource<I> where I: Interner
    {
    fn fmt(&self, __f: &mut ::core::fmt::Formatter<'_>)
        -> ::core::fmt::Result {
        match self {
            CandidateSource::Impl(ref __field_0) => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_tuple(__f, "Impl");
                ::core::fmt::DebugTuple::field(&mut __builder, __field_0);
                ::core::fmt::DebugTuple::finish(&mut __builder)
            }
            CandidateSource::BuiltinImpl(ref __field_0) => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_tuple(__f, "BuiltinImpl");
                ::core::fmt::DebugTuple::field(&mut __builder, __field_0);
                ::core::fmt::DebugTuple::finish(&mut __builder)
            }
            CandidateSource::ParamEnv(ref __field_0) => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_tuple(__f, "ParamEnv");
                ::core::fmt::DebugTuple::field(&mut __builder, __field_0);
                ::core::fmt::DebugTuple::finish(&mut __builder)
            }
            CandidateSource::AliasBound(ref __field_0) => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_tuple(__f, "AliasBound");
                ::core::fmt::DebugTuple::field(&mut __builder, __field_0);
                ::core::fmt::DebugTuple::finish(&mut __builder)
            }
            CandidateSource::CoherenceUnknowable =>
                ::core::fmt::Formatter::write_str(__f, "CoherenceUnknowable"),
        }
    }
}#[derive_where(Clone, Copy, Hash, PartialEq, Debug; I: Interner)]
489pub enum CandidateSource<I: Interner> {
490    /// A user written impl.
491    ///
492    /// ## Examples
493    ///
494    /// ```rust
495    /// fn main() {
496    ///     let x: Vec<u32> = Vec::new();
497    ///     // This uses the impl from the standard library to prove `Vec<T>: Clone`.
498    ///     let y = x.clone();
499    /// }
500    /// ```
501    Impl(I::ImplId),
502    /// A builtin impl generated by the compiler. When adding a new special
503    /// trait, try to use actual impls whenever possible. Builtin impls should
504    /// only be used in cases where the impl cannot be manually be written.
505    ///
506    /// Notable examples are auto traits, `Sized`, and `DiscriminantKind`.
507    /// For a list of all traits with builtin impls, check out the
508    /// `EvalCtxt::assemble_builtin_impl_candidates` method.
509    BuiltinImpl(BuiltinImplSource),
510    /// An assumption from the environment. Stores a [`ParamEnvSource`], since we
511    /// prefer non-global param-env candidates in candidate assembly.
512    ///
513    /// ## Examples
514    ///
515    /// ```rust
516    /// fn is_clone<T: Clone>(x: T) -> (T, T) {
517    ///     // This uses the assumption `T: Clone` from the `where`-bounds
518    ///     // to prove `T: Clone`.
519    ///     (x.clone(), x)
520    /// }
521    /// ```
522    ParamEnv(ParamEnvSource),
523    /// If the self type is an alias type, e.g. an opaque type or a projection,
524    /// we know the bounds on that alias to hold even without knowing its concrete
525    /// underlying type.
526    ///
527    /// More precisely this candidate is using the `n-th` bound in the `item_bounds` of
528    /// the self type.
529    ///
530    /// ## Examples
531    ///
532    /// ```rust
533    /// trait Trait {
534    ///     type Assoc: Clone;
535    /// }
536    ///
537    /// fn foo<T: Trait>(x: <T as Trait>::Assoc) {
538    ///     // We prove `<T as Trait>::Assoc` by looking at the bounds on `Assoc` in
539    ///     // in the trait definition.
540    ///     let _y = x.clone();
541    /// }
542    /// ```
543    AliasBound(AliasBoundKind),
544    /// A candidate that is registered only during coherence to represent some
545    /// yet-unknown impl that could be produced downstream without violating orphan
546    /// rules.
547    // FIXME: Merge this with the forced ambiguity candidates, so those don't use `Misc`.
548    CoherenceUnknowable,
549}
550
551impl<I: Interner> Eq for CandidateSource<I> {}
552
553#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for ParamEnvSource { }
#[automatically_derived]
impl ::core::clone::Clone for ParamEnvSource {
    #[inline]
    fn clone(&self) -> Self { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for ParamEnvSource { }Copy, #[automatically_derived]
impl ::core::hash::Hash for ParamEnvSource {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
            state)
    }
}Hash, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for ParamEnvSource { }
#[automatically_derived]
impl ::core::cmp::PartialEq for ParamEnvSource {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
            ::core::intrinsics::discriminant_value(other)
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for ParamEnvSource { }Eq, #[automatically_derived]
impl ::core::fmt::Debug for ParamEnvSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                ParamEnvSource::NonGlobal => "NonGlobal",
                ParamEnvSource::Global => "Global",
            })
    }
}Debug)]
554pub enum ParamEnvSource {
555    /// Preferred eagerly.
556    NonGlobal,
557    // Not considered unless there are non-global param-env candidates too.
558    Global,
559}
560
561#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for AliasBoundKind { }
#[automatically_derived]
impl ::core::clone::Clone for AliasBoundKind {
    #[inline]
    fn clone(&self) -> Self { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for AliasBoundKind { }Copy, #[automatically_derived]
impl ::core::hash::Hash for AliasBoundKind {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
            state)
    }
}Hash, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for AliasBoundKind { }
#[automatically_derived]
impl ::core::cmp::PartialEq for AliasBoundKind {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
            ::core::intrinsics::discriminant_value(other)
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for AliasBoundKind { }Eq, #[automatically_derived]
impl ::core::fmt::Debug for AliasBoundKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                AliasBoundKind::SelfBounds => "SelfBounds",
                AliasBoundKind::NonSelfBounds => "NonSelfBounds",
            })
    }
}Debug)]
562#[derive(const _: () =
    {
        impl<I> ::rustc_type_ir::TypeVisitable<I> for AliasBoundKind where
            I: Interner {
            fn visit_with<__V: ::rustc_type_ir::TypeVisitor<I>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    AliasBoundKind::SelfBounds => {}
                    AliasBoundKind::NonSelfBounds => {}
                }
                <__V::Result as ::rustc_type_ir::VisitorResult>::output()
            }
        }
    };TypeVisitable_Generic, const _: () =
    {
        unsafe impl<__V> ::rustc_type_ir::GenericTypeVisitable<__V> for
            AliasBoundKind {
            fn generic_visit_with(&self, __visitor: &mut __V) {
                match *self {
                    AliasBoundKind::SelfBounds => {}
                    AliasBoundKind::NonSelfBounds => {}
                }
            }
        }
    };GenericTypeVisitable, const _: () =
    {
        impl<I> ::rustc_type_ir::TypeFoldable<I> for AliasBoundKind where
            I: Interner {
            fn try_fold_with<__F: ::rustc_type_ir::FallibleTypeFolder<I>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        AliasBoundKind::SelfBounds => { AliasBoundKind::SelfBounds }
                        AliasBoundKind::NonSelfBounds => {
                            AliasBoundKind::NonSelfBounds
                        }
                    })
            }
            fn fold_with<__F: ::rustc_type_ir::TypeFolder<I>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    AliasBoundKind::SelfBounds => { AliasBoundKind::SelfBounds }
                    AliasBoundKind::NonSelfBounds => {
                        AliasBoundKind::NonSelfBounds
                    }
                }
            }
        }
    };TypeFoldable_Generic)]
563pub enum AliasBoundKind {
564    /// Alias bound from the self type of a projection
565    SelfBounds,
566    // Alias bound having recursed on the self type of a projection
567    NonSelfBounds,
568}
569
570#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for BuiltinImplSource { }
#[automatically_derived]
impl ::core::clone::Clone for BuiltinImplSource {
    #[inline]
    fn clone(&self) -> Self {
        let _: ::core::clone::AssertParamIsClone<usize>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for BuiltinImplSource { }Copy, #[automatically_derived]
impl ::core::hash::Hash for BuiltinImplSource {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
            state);
        match self {
            Self::Object(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            Self::TraitUpcasting(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            _ => {}
        }
    }
}Hash, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for BuiltinImplSource { }
#[automatically_derived]
impl ::core::cmp::PartialEq for BuiltinImplSource {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
                ::core::intrinsics::discriminant_value(other) &&
            match (self, other) {
                (Self::Object(__self_0), Self::Object(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (Self::TraitUpcasting(__self_0),
                    Self::TraitUpcasting(__arg1_0)) => __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for BuiltinImplSource {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<usize>;
    }
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for BuiltinImplSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Self::Trivial => ::core::fmt::Formatter::write_str(f, "Trivial"),
            Self::Misc => ::core::fmt::Formatter::write_str(f, "Misc"),
            Self::Object(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Object",
                    &__self_0),
            Self::TraitUpcasting(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "TraitUpcasting", &__self_0),
        }
    }
}Debug)]
571#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            BuiltinImplSource {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    BuiltinImplSource::Trivial => {}
                    BuiltinImplSource::Misc => {}
                    BuiltinImplSource::Object(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    BuiltinImplSource::TraitUpcasting(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<__E: ::rustc_serialize::Encoder>
            ::rustc_serialize::Encodable<__E> for BuiltinImplSource {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        BuiltinImplSource::Trivial => { 0usize }
                        BuiltinImplSource::Misc => { 1usize }
                        BuiltinImplSource::Object(ref __binding_0) => { 2usize }
                        BuiltinImplSource::TraitUpcasting(ref __binding_0) => {
                            3usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    BuiltinImplSource::Trivial => {}
                    BuiltinImplSource::Misc => {}
                    BuiltinImplSource::Object(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    BuiltinImplSource::TraitUpcasting(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable_NoContext, const _: () =
    {
        impl<__D: ::rustc_serialize::Decoder>
            ::rustc_serialize::Decodable<__D> for BuiltinImplSource {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { BuiltinImplSource::Trivial }
                    1usize => { BuiltinImplSource::Misc }
                    2usize => {
                        BuiltinImplSource::Object(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    3usize => {
                        BuiltinImplSource::TraitUpcasting(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `BuiltinImplSource`, expected 0..4, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable_NoContext))]
572pub enum BuiltinImplSource {
573    /// A built-in impl that is considered trivial, without any nested requirements. They
574    /// are preferred over where-clauses, and we want to track them explicitly.
575    Trivial,
576    /// Some built-in impl we don't need to differentiate. This should be used
577    /// unless more specific information is necessary.
578    Misc,
579    /// A built-in impl for trait objects. The index is only used in winnowing.
580    // FIXME(-Znext-solver=no): The new solver does not need this index, remove!
581    Object(usize),
582    /// A built-in implementation of `Upcast` for trait objects to other trait objects.
583    ///
584    /// The index is only used for winnowing.
585    // FIXME(-Znext-solver=no): The new solver does not need this index, remove!
586    TraitUpcasting(usize),
587}
588
589#[automatically_derived]
impl<I: Interner> ::core::marker::Copy for FetchEligibleAssocItemResponse<I>
    where I: Interner {
}
#[automatically_derived]
impl<I: Interner> ::core::clone::Clone for FetchEligibleAssocItemResponse<I>
    where I: Interner {
    #[inline]
    fn clone(&self) -> Self { *self }
}
#[automatically_derived]
impl<I: Interner> ::core::fmt::Debug for FetchEligibleAssocItemResponse<I>
    where I: Interner {
    fn fmt(&self, __f: &mut ::core::fmt::Formatter<'_>)
        -> ::core::fmt::Result {
        match self {
            FetchEligibleAssocItemResponse::Err(ref __field_0) => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_tuple(__f, "Err");
                ::core::fmt::DebugTuple::field(&mut __builder, __field_0);
                ::core::fmt::DebugTuple::finish(&mut __builder)
            }
            FetchEligibleAssocItemResponse::Found(ref __field_0) => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_tuple(__f, "Found");
                ::core::fmt::DebugTuple::field(&mut __builder, __field_0);
                ::core::fmt::DebugTuple::finish(&mut __builder)
            }
            FetchEligibleAssocItemResponse::NotFound(ref __field_0) => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_tuple(__f, "NotFound");
                ::core::fmt::DebugTuple::field(&mut __builder, __field_0);
                ::core::fmt::DebugTuple::finish(&mut __builder)
            }
            FetchEligibleAssocItemResponse::NotFoundBecauseErased =>
                ::core::fmt::Formatter::write_str(__f,
                    "NotFoundBecauseErased"),
        }
    }
}#[derive_where(Copy, Clone, Debug; I: Interner)]
590pub enum FetchEligibleAssocItemResponse<I: Interner> {
591    Err(I::ErrorGuaranteed),
592    Found(I::ImplOrTraitAssocTermId),
593    NotFound(TypingMode<I, CantBeErased>),
594    NotFoundBecauseErased,
595}
596
597#[automatically_derived]
impl<I: Interner> ::core::clone::Clone for Response<I> where I: Interner {
    #[inline]
    fn clone(&self) -> Self { *self }
}
#[automatically_derived]
impl<I: Interner> ::core::marker::Copy for Response<I> where I: Interner { }
#[automatically_derived]
impl<I: Interner> ::core::hash::Hash for Response<I> where I: Interner {
    fn hash<__H: ::core::hash::Hasher>(&self, __state: &mut __H) {
        match self {
            Response {
                certainty: ref __field_certainty,
                var_values: ref __field_var_values,
                external_constraints: ref __field_external_constraints } => {
                ::core::hash::Hash::hash(__field_certainty, __state);
                ::core::hash::Hash::hash(__field_var_values, __state);
                ::core::hash::Hash::hash(__field_external_constraints,
                    __state);
            }
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::cmp::PartialEq for Response<I> where I: Interner {
    #[inline]
    fn eq(&self, __other: &Self) -> ::core::primitive::bool {
        match (self, __other) {
            (Response {
                certainty: ref __field_certainty,
                var_values: ref __field_var_values,
                external_constraints: ref __field_external_constraints },
                Response {
                certainty: ref __other_field_certainty,
                var_values: ref __other_field_var_values,
                external_constraints: ref __other_field_external_constraints
                }) =>
                true &&
                            ::core::cmp::PartialEq::eq(__field_certainty,
                                __other_field_certainty) &&
                        ::core::cmp::PartialEq::eq(__field_var_values,
                            __other_field_var_values) &&
                    ::core::cmp::PartialEq::eq(__field_external_constraints,
                        __other_field_external_constraints),
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::fmt::Debug for Response<I> where I: Interner {
    fn fmt(&self, __f: &mut ::core::fmt::Formatter<'_>)
        -> ::core::fmt::Result {
        match self {
            Response {
                certainty: ref __field_certainty,
                var_values: ref __field_var_values,
                external_constraints: ref __field_external_constraints } => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_struct(__f, "Response");
                ::core::fmt::DebugStruct::field(&mut __builder, "certainty",
                    __field_certainty);
                ::core::fmt::DebugStruct::field(&mut __builder, "var_values",
                    __field_var_values);
                ::core::fmt::DebugStruct::field(&mut __builder,
                    "external_constraints", __field_external_constraints);
                ::core::fmt::DebugStruct::finish(&mut __builder)
            }
        }
    }
}#[derive_where(Clone, Copy, Hash, PartialEq, Debug; I: Interner)]
598#[derive(const _: () =
    {
        impl<I: Interner> ::rustc_type_ir::TypeVisitable<I> for Response<I>
            where I: Interner,
            CanonicalVarValues<I>: ::rustc_type_ir::TypeVisitable<I>,
            I::ExternalConstraints: ::rustc_type_ir::TypeVisitable<I> {
            fn visit_with<__V: ::rustc_type_ir::TypeVisitor<I>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    Response {
                        certainty: ref __binding_0,
                        var_values: ref __binding_1,
                        external_constraints: ref __binding_2 } => {
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_2,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_type_ir::VisitorResult>::output()
            }
        }
    };TypeVisitable_Generic, const _: () =
    {
        unsafe impl<I: Interner, __V>
            ::rustc_type_ir::GenericTypeVisitable<__V> for Response<I> where
            Certainty: ::rustc_type_ir::GenericTypeVisitable<__V>,
            CanonicalVarValues<I>: ::rustc_type_ir::GenericTypeVisitable<__V>,
            I::ExternalConstraints: ::rustc_type_ir::GenericTypeVisitable<__V>
            {
            fn generic_visit_with(&self, __visitor: &mut __V) {
                match *self {
                    Response {
                        certainty: ref __binding_0,
                        var_values: ref __binding_1,
                        external_constraints: ref __binding_2 } => {
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_0,
                                __visitor);
                        }
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_1,
                                __visitor);
                        }
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_2,
                                __visitor);
                        }
                    }
                }
            }
        }
    };GenericTypeVisitable, const _: () =
    {
        impl<I: Interner> ::rustc_type_ir::TypeFoldable<I> for Response<I>
            where I: Interner,
            CanonicalVarValues<I>: ::rustc_type_ir::TypeFoldable<I>,
            I::ExternalConstraints: ::rustc_type_ir::TypeFoldable<I> {
            fn try_fold_with<__F: ::rustc_type_ir::FallibleTypeFolder<I>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        Response {
                            certainty: __binding_0,
                            var_values: __binding_1,
                            external_constraints: __binding_2 } => {
                            Response {
                                certainty: ::rustc_type_ir::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                var_values: ::rustc_type_ir::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                external_constraints: ::rustc_type_ir::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_type_ir::TypeFolder<I>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    Response {
                        certainty: __binding_0,
                        var_values: __binding_1,
                        external_constraints: __binding_2 } => {
                        Response {
                            certainty: ::rustc_type_ir::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            var_values: ::rustc_type_ir::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            external_constraints: ::rustc_type_ir::TypeFoldable::fold_with(__binding_2,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable_Generic)]
599#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl<I: Interner> ::rustc_data_structures::stable_hash::StableHash for
            Response<I> where
            CanonicalVarValues<I>: ::rustc_data_structures::stable_hash::StableHash,
            I::ExternalConstraints: ::rustc_data_structures::stable_hash::StableHash
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Response {
                        certainty: ref __binding_0,
                        var_values: ref __binding_1,
                        external_constraints: ref __binding_2 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash_NoContext))]
600pub struct Response<I: Interner> {
601    pub certainty: Certainty,
602    pub var_values: CanonicalVarValues<I>,
603    /// Additional constraints returned by this query.
604    pub external_constraints: I::ExternalConstraints,
605}
606
607impl<I: Interner> Eq for Response<I> {}
608
609#[automatically_derived]
impl<I: Interner> ::core::clone::Clone for ExternalRegionConstraints<I> where
    I: Interner {
    #[inline]
    fn clone(&self) -> Self {
        match self {
            ExternalRegionConstraints::Old(ref __field_0) =>
                ExternalRegionConstraints::Old {
                    0: ::core::clone::Clone::clone(__field_0),
                },
            ExternalRegionConstraints::NextGen(ref __field_0) =>
                ExternalRegionConstraints::NextGen {
                    0: ::core::clone::Clone::clone(__field_0),
                },
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::hash::Hash for ExternalRegionConstraints<I> where
    I: Interner {
    fn hash<__H: ::core::hash::Hasher>(&self, __state: &mut __H) {
        match self {
            ExternalRegionConstraints::Old(ref __field_0) => {
                ::core::hash::Hash::hash(&::core::mem::discriminant(self),
                    __state);
                ::core::hash::Hash::hash(__field_0, __state);
            }
            ExternalRegionConstraints::NextGen(ref __field_0) => {
                ::core::hash::Hash::hash(&::core::mem::discriminant(self),
                    __state);
                ::core::hash::Hash::hash(__field_0, __state);
            }
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::cmp::PartialEq for ExternalRegionConstraints<I>
    where I: Interner {
    #[inline]
    fn eq(&self, __other: &Self) -> ::core::primitive::bool {
        if ::core::mem::discriminant(self) ==
                ::core::mem::discriminant(__other) {
            match (self, __other) {
                (ExternalRegionConstraints::Old(ref __field_0),
                    ExternalRegionConstraints::Old(ref __other_field_0)) =>
                    true &&
                        ::core::cmp::PartialEq::eq(__field_0, __other_field_0),
                (ExternalRegionConstraints::NextGen(ref __field_0),
                    ExternalRegionConstraints::NextGen(ref __other_field_0)) =>
                    true &&
                        ::core::cmp::PartialEq::eq(__field_0, __other_field_0),
                _ => unsafe { ::core::hint::unreachable_unchecked() },
            }
        } else { false }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::fmt::Debug for ExternalRegionConstraints<I> where
    I: Interner {
    fn fmt(&self, __f: &mut ::core::fmt::Formatter<'_>)
        -> ::core::fmt::Result {
        match self {
            ExternalRegionConstraints::Old(ref __field_0) => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_tuple(__f, "Old");
                ::core::fmt::DebugTuple::field(&mut __builder, __field_0);
                ::core::fmt::DebugTuple::finish(&mut __builder)
            }
            ExternalRegionConstraints::NextGen(ref __field_0) => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_tuple(__f, "NextGen");
                ::core::fmt::DebugTuple::field(&mut __builder, __field_0);
                ::core::fmt::DebugTuple::finish(&mut __builder)
            }
        }
    }
}#[derive_where(Clone, Hash, PartialEq, Debug; I: Interner)]
610#[derive(const _: () =
    {
        impl<I: Interner> ::rustc_type_ir::TypeVisitable<I> for
            ExternalRegionConstraints<I> where I: Interner,
            Vec<(ty::RegionConstraint<I>,
            VisibleForLeakCheck)>: ::rustc_type_ir::TypeVisitable<I>,
            RegionConstraint<I>: ::rustc_type_ir::TypeVisitable<I> {
            fn visit_with<__V: ::rustc_type_ir::TypeVisitor<I>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    ExternalRegionConstraints::Old(ref __binding_0) => {
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    ExternalRegionConstraints::NextGen(ref __binding_0) => {
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_type_ir::VisitorResult>::output()
            }
        }
    };TypeVisitable_Generic, const _: () =
    {
        unsafe impl<I: Interner, __V>
            ::rustc_type_ir::GenericTypeVisitable<__V> for
            ExternalRegionConstraints<I> where
            Vec<(ty::RegionConstraint<I>,
            VisibleForLeakCheck)>: ::rustc_type_ir::GenericTypeVisitable<__V>,
            RegionConstraint<I>: ::rustc_type_ir::GenericTypeVisitable<__V> {
            fn generic_visit_with(&self, __visitor: &mut __V) {
                match *self {
                    ExternalRegionConstraints::Old(ref __binding_0) => {
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_0,
                                __visitor);
                        }
                    }
                    ExternalRegionConstraints::NextGen(ref __binding_0) => {
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_0,
                                __visitor);
                        }
                    }
                }
            }
        }
    };GenericTypeVisitable, const _: () =
    {
        impl<I: Interner> ::rustc_type_ir::TypeFoldable<I> for
            ExternalRegionConstraints<I> where I: Interner,
            Vec<(ty::RegionConstraint<I>,
            VisibleForLeakCheck)>: ::rustc_type_ir::TypeFoldable<I>,
            RegionConstraint<I>: ::rustc_type_ir::TypeFoldable<I> {
            fn try_fold_with<__F: ::rustc_type_ir::FallibleTypeFolder<I>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        ExternalRegionConstraints::Old(__binding_0) => {
                            ExternalRegionConstraints::Old(::rustc_type_ir::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        ExternalRegionConstraints::NextGen(__binding_0) => {
                            ExternalRegionConstraints::NextGen(::rustc_type_ir::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                    })
            }
            fn fold_with<__F: ::rustc_type_ir::TypeFolder<I>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    ExternalRegionConstraints::Old(__binding_0) => {
                        ExternalRegionConstraints::Old(::rustc_type_ir::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    ExternalRegionConstraints::NextGen(__binding_0) => {
                        ExternalRegionConstraints::NextGen(::rustc_type_ir::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                }
            }
        }
    };TypeFoldable_Generic)]
611#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl<I: Interner> ::rustc_data_structures::stable_hash::StableHash for
            ExternalRegionConstraints<I> where
            Vec<(ty::RegionConstraint<I>,
            VisibleForLeakCheck)>: ::rustc_data_structures::stable_hash::StableHash,
            RegionConstraint<I>: ::rustc_data_structures::stable_hash::StableHash
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    ExternalRegionConstraints::Old(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    ExternalRegionConstraints::NextGen(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash_NoContext))]
612pub enum ExternalRegionConstraints<I: Interner> {
613    /// normal region constraints used on stable/when -Znext-solver is used by itself
614    Old(Vec<(ty::RegionConstraint<I>, VisibleForLeakCheck)>),
615    /// new form of region constraints used when `-Zassumptions-on-binders` is enabled.
616    /// supports ORs.
617    NextGen(RegionConstraint<I>),
618}
619
620impl<I: Interner> ExternalRegionConstraints<I> {
621    pub fn is_empty(&self) -> bool {
622        match self {
623            Self::Old(r) => r.is_empty(),
624            Self::NextGen(r) => r.is_true(),
625        }
626    }
627}
628
629/// Additional constraints returned on success.
630#[automatically_derived]
impl<I: Interner> ::core::clone::Clone for ExternalConstraintsData<I> where
    I: Interner {
    #[inline]
    fn clone(&self) -> Self {
        match self {
            ExternalConstraintsData {
                region_constraints: ref __field_region_constraints,
                opaque_types: ref __field_opaque_types,
                normalization_nested_goals: ref __field_normalization_nested_goals
                } =>
                ExternalConstraintsData {
                    region_constraints: ::core::clone::Clone::clone(__field_region_constraints),
                    opaque_types: ::core::clone::Clone::clone(__field_opaque_types),
                    normalization_nested_goals: ::core::clone::Clone::clone(__field_normalization_nested_goals),
                },
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::hash::Hash for ExternalConstraintsData<I> where
    I: Interner {
    fn hash<__H: ::core::hash::Hasher>(&self, __state: &mut __H) {
        match self {
            ExternalConstraintsData {
                region_constraints: ref __field_region_constraints,
                opaque_types: ref __field_opaque_types,
                normalization_nested_goals: ref __field_normalization_nested_goals
                } => {
                ::core::hash::Hash::hash(__field_region_constraints, __state);
                ::core::hash::Hash::hash(__field_opaque_types, __state);
                ::core::hash::Hash::hash(__field_normalization_nested_goals,
                    __state);
            }
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::cmp::PartialEq for ExternalConstraintsData<I> where
    I: Interner {
    #[inline]
    fn eq(&self, __other: &Self) -> ::core::primitive::bool {
        match (self, __other) {
            (ExternalConstraintsData {
                region_constraints: ref __field_region_constraints,
                opaque_types: ref __field_opaque_types,
                normalization_nested_goals: ref __field_normalization_nested_goals
                }, ExternalConstraintsData {
                region_constraints: ref __other_field_region_constraints,
                opaque_types: ref __other_field_opaque_types,
                normalization_nested_goals: ref __other_field_normalization_nested_goals
                }) =>
                true &&
                            ::core::cmp::PartialEq::eq(__field_region_constraints,
                                __other_field_region_constraints) &&
                        ::core::cmp::PartialEq::eq(__field_opaque_types,
                            __other_field_opaque_types) &&
                    ::core::cmp::PartialEq::eq(__field_normalization_nested_goals,
                        __other_field_normalization_nested_goals),
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::fmt::Debug for ExternalConstraintsData<I> where
    I: Interner {
    fn fmt(&self, __f: &mut ::core::fmt::Formatter<'_>)
        -> ::core::fmt::Result {
        match self {
            ExternalConstraintsData {
                region_constraints: ref __field_region_constraints,
                opaque_types: ref __field_opaque_types,
                normalization_nested_goals: ref __field_normalization_nested_goals
                } => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_struct(__f,
                        "ExternalConstraintsData");
                ::core::fmt::DebugStruct::field(&mut __builder,
                    "region_constraints", __field_region_constraints);
                ::core::fmt::DebugStruct::field(&mut __builder,
                    "opaque_types", __field_opaque_types);
                ::core::fmt::DebugStruct::field(&mut __builder,
                    "normalization_nested_goals",
                    __field_normalization_nested_goals);
                ::core::fmt::DebugStruct::finish(&mut __builder)
            }
        }
    }
}#[derive_where(Clone, Hash, PartialEq, Debug; I: Interner)]
631#[derive(const _: () =
    {
        impl<I: Interner> ::rustc_type_ir::TypeVisitable<I> for
            ExternalConstraintsData<I> where I: Interner,
            ExternalRegionConstraints<I>: ::rustc_type_ir::TypeVisitable<I>,
            Vec<(ty::OpaqueTypeKey<I>,
            I::Ty)>: ::rustc_type_ir::TypeVisitable<I>,
            NestedNormalizationGoals<I>: ::rustc_type_ir::TypeVisitable<I> {
            fn visit_with<__V: ::rustc_type_ir::TypeVisitor<I>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    ExternalConstraintsData {
                        region_constraints: ref __binding_0,
                        opaque_types: ref __binding_1,
                        normalization_nested_goals: ref __binding_2 } => {
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_2,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_type_ir::VisitorResult>::output()
            }
        }
    };TypeVisitable_Generic, const _: () =
    {
        unsafe impl<I: Interner, __V>
            ::rustc_type_ir::GenericTypeVisitable<__V> for
            ExternalConstraintsData<I> where
            ExternalRegionConstraints<I>: ::rustc_type_ir::GenericTypeVisitable<__V>,
            Vec<(ty::OpaqueTypeKey<I>,
            I::Ty)>: ::rustc_type_ir::GenericTypeVisitable<__V>,
            NestedNormalizationGoals<I>: ::rustc_type_ir::GenericTypeVisitable<__V>
            {
            fn generic_visit_with(&self, __visitor: &mut __V) {
                match *self {
                    ExternalConstraintsData {
                        region_constraints: ref __binding_0,
                        opaque_types: ref __binding_1,
                        normalization_nested_goals: ref __binding_2 } => {
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_0,
                                __visitor);
                        }
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_1,
                                __visitor);
                        }
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_2,
                                __visitor);
                        }
                    }
                }
            }
        }
    };GenericTypeVisitable, const _: () =
    {
        impl<I: Interner> ::rustc_type_ir::TypeFoldable<I> for
            ExternalConstraintsData<I> where I: Interner,
            ExternalRegionConstraints<I>: ::rustc_type_ir::TypeFoldable<I>,
            Vec<(ty::OpaqueTypeKey<I>,
            I::Ty)>: ::rustc_type_ir::TypeFoldable<I>,
            NestedNormalizationGoals<I>: ::rustc_type_ir::TypeFoldable<I> {
            fn try_fold_with<__F: ::rustc_type_ir::FallibleTypeFolder<I>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        ExternalConstraintsData {
                            region_constraints: __binding_0,
                            opaque_types: __binding_1,
                            normalization_nested_goals: __binding_2 } => {
                            ExternalConstraintsData {
                                region_constraints: ::rustc_type_ir::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                opaque_types: ::rustc_type_ir::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                normalization_nested_goals: ::rustc_type_ir::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_type_ir::TypeFolder<I>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    ExternalConstraintsData {
                        region_constraints: __binding_0,
                        opaque_types: __binding_1,
                        normalization_nested_goals: __binding_2 } => {
                        ExternalConstraintsData {
                            region_constraints: ::rustc_type_ir::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            opaque_types: ::rustc_type_ir::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            normalization_nested_goals: ::rustc_type_ir::TypeFoldable::fold_with(__binding_2,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable_Generic)]
632#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl<I: Interner> ::rustc_data_structures::stable_hash::StableHash for
            ExternalConstraintsData<I> where
            ExternalRegionConstraints<I>: ::rustc_data_structures::stable_hash::StableHash,
            Vec<(ty::OpaqueTypeKey<I>,
            I::Ty)>: ::rustc_data_structures::stable_hash::StableHash,
            NestedNormalizationGoals<I>: ::rustc_data_structures::stable_hash::StableHash
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    ExternalConstraintsData {
                        region_constraints: ref __binding_0,
                        opaque_types: ref __binding_1,
                        normalization_nested_goals: ref __binding_2 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash_NoContext))]
633pub struct ExternalConstraintsData<I: Interner> {
634    pub region_constraints: ExternalRegionConstraints<I>,
635    pub opaque_types: Vec<(ty::OpaqueTypeKey<I>, I::Ty)>,
636    pub normalization_nested_goals: NestedNormalizationGoals<I>,
637}
638
639impl<I: Interner> Eq for ExternalConstraintsData<I> {}
640
641impl<I: Interner> ExternalConstraintsData<I> {
642    pub fn new(cx: I) -> Self {
643        let region_constraints = match cx.assumptions_on_binders() {
644            true => ExternalRegionConstraints::NextGen(RegionConstraint::new_true()),
645            false => ExternalRegionConstraints::Old(::alloc::vec::Vec::new()vec![]),
646        };
647
648        Self {
649            region_constraints,
650            opaque_types: ::alloc::vec::Vec::new()vec![],
651            normalization_nested_goals: NestedNormalizationGoals::default(),
652        }
653    }
654
655    pub fn is_empty(&self) -> bool {
656        let ExternalConstraintsData {
657            region_constraints,
658            opaque_types,
659            normalization_nested_goals,
660        } = self;
661        region_constraints.is_empty()
662            && opaque_types.is_empty()
663            && normalization_nested_goals.is_empty()
664    }
665}
666
667/// Whether the given region constraint should be considered/ignored for
668/// leak check. In most part of the compiler, this should be `Yes`, except
669/// for applying constraints from the nested goals in next-solver.
670/// `Unreachable` is used in places in which leak check isn't done, e.g.
671/// borrowck.
672#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for VisibleForLeakCheck { }
#[automatically_derived]
impl ::core::clone::Clone for VisibleForLeakCheck {
    #[inline]
    fn clone(&self) -> Self { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for VisibleForLeakCheck { }Copy, #[automatically_derived]
impl ::core::hash::Hash for VisibleForLeakCheck {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
            state)
    }
}Hash, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for VisibleForLeakCheck { }
#[automatically_derived]
impl ::core::cmp::PartialEq for VisibleForLeakCheck {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
            ::core::intrinsics::discriminant_value(other)
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for VisibleForLeakCheck { }Eq, #[automatically_derived]
impl ::core::fmt::Debug for VisibleForLeakCheck {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                VisibleForLeakCheck::Yes => "Yes",
                VisibleForLeakCheck::No => "No",
                VisibleForLeakCheck::Unreachable => "Unreachable",
            })
    }
}Debug)]
673#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            VisibleForLeakCheck {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    VisibleForLeakCheck::Yes => {}
                    VisibleForLeakCheck::No => {}
                    VisibleForLeakCheck::Unreachable => {}
                }
            }
        }
    };StableHash_NoContext))]
674pub enum VisibleForLeakCheck {
675    Yes,
676    No,
677    Unreachable,
678}
679
680impl VisibleForLeakCheck {
681    pub fn and(self, other: VisibleForLeakCheck) -> VisibleForLeakCheck {
682        match (self, other) {
683            // Make sure that we never overwrite that constraints shouldn't
684            // be encountered by the leak checked
685            (VisibleForLeakCheck::Unreachable, _) | (_, VisibleForLeakCheck::Unreachable) => {
686                VisibleForLeakCheck::Unreachable
687            }
688            (VisibleForLeakCheck::No, _) | (_, VisibleForLeakCheck::No) => VisibleForLeakCheck::No,
689            (VisibleForLeakCheck::Yes, VisibleForLeakCheck::Yes) => VisibleForLeakCheck::Yes,
690        }
691    }
692
693    pub fn or(self, other: VisibleForLeakCheck) -> VisibleForLeakCheck {
694        match (self, other) {
695            // Make sure that we never overwrite that constraints shouldn't
696            // be encountered by the leak checked
697            (VisibleForLeakCheck::Unreachable, _) | (_, VisibleForLeakCheck::Unreachable) => {
698                VisibleForLeakCheck::Unreachable
699            }
700            (VisibleForLeakCheck::Yes, _) | (_, VisibleForLeakCheck::Yes) => {
701                VisibleForLeakCheck::Yes
702            }
703            (VisibleForLeakCheck::No, VisibleForLeakCheck::No) => VisibleForLeakCheck::No,
704        }
705    }
706}
707
708#[automatically_derived]
impl<I: Interner> ::core::clone::Clone for NestedNormalizationGoals<I> where
    I: Interner {
    #[inline]
    fn clone(&self) -> Self {
        match self {
            NestedNormalizationGoals(ref __field_0) =>
                NestedNormalizationGoals {
                    0: ::core::clone::Clone::clone(__field_0),
                },
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::hash::Hash for NestedNormalizationGoals<I> where
    I: Interner {
    fn hash<__H: ::core::hash::Hasher>(&self, __state: &mut __H) {
        match self {
            NestedNormalizationGoals(ref __field_0) => {
                ::core::hash::Hash::hash(__field_0, __state);
            }
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::cmp::PartialEq for NestedNormalizationGoals<I> where
    I: Interner {
    #[inline]
    fn eq(&self, __other: &Self) -> ::core::primitive::bool {
        match (self, __other) {
            (NestedNormalizationGoals(ref __field_0),
                NestedNormalizationGoals(ref __other_field_0)) =>
                true &&
                    ::core::cmp::PartialEq::eq(__field_0, __other_field_0),
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::fmt::Debug for NestedNormalizationGoals<I> where
    I: Interner {
    fn fmt(&self, __f: &mut ::core::fmt::Formatter<'_>)
        -> ::core::fmt::Result {
        match self {
            NestedNormalizationGoals(ref __field_0) => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_tuple(__f,
                        "NestedNormalizationGoals");
                ::core::fmt::DebugTuple::field(&mut __builder, __field_0);
                ::core::fmt::DebugTuple::finish(&mut __builder)
            }
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::default::Default for NestedNormalizationGoals<I>
    where I: Interner {
    fn default() -> Self {
        NestedNormalizationGoals(::core::default::Default::default())
    }
}#[derive_where(Clone, Hash, PartialEq, Debug, Default; I: Interner)]
709#[derive(const _: () =
    {
        impl<I: Interner> ::rustc_type_ir::TypeVisitable<I> for
            NestedNormalizationGoals<I> where I: Interner,
            Vec<(GoalSource,
            Goal<I, I::Predicate>)>: ::rustc_type_ir::TypeVisitable<I> {
            fn visit_with<__V: ::rustc_type_ir::TypeVisitor<I>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    NestedNormalizationGoals(ref __binding_0) => {
                        {
                            match ::rustc_type_ir::VisitorResult::branch(::rustc_type_ir::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_type_ir::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_type_ir::VisitorResult>::output()
            }
        }
    };TypeVisitable_Generic, const _: () =
    {
        unsafe impl<I: Interner, __V>
            ::rustc_type_ir::GenericTypeVisitable<__V> for
            NestedNormalizationGoals<I> where
            Vec<(GoalSource,
            Goal<I,
            I::Predicate>)>: ::rustc_type_ir::GenericTypeVisitable<__V> {
            fn generic_visit_with(&self, __visitor: &mut __V) {
                match *self {
                    NestedNormalizationGoals(ref __binding_0) => {
                        {
                            ::rustc_type_ir::GenericTypeVisitable::<__V>::generic_visit_with(__binding_0,
                                __visitor);
                        }
                    }
                }
            }
        }
    };GenericTypeVisitable, const _: () =
    {
        impl<I: Interner> ::rustc_type_ir::TypeFoldable<I> for
            NestedNormalizationGoals<I> where I: Interner,
            Vec<(GoalSource,
            Goal<I, I::Predicate>)>: ::rustc_type_ir::TypeFoldable<I> {
            fn try_fold_with<__F: ::rustc_type_ir::FallibleTypeFolder<I>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        NestedNormalizationGoals(__binding_0) => {
                            NestedNormalizationGoals(::rustc_type_ir::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                    })
            }
            fn fold_with<__F: ::rustc_type_ir::TypeFolder<I>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    NestedNormalizationGoals(__binding_0) => {
                        NestedNormalizationGoals(::rustc_type_ir::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                }
            }
        }
    };TypeFoldable_Generic)]
710#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl<I: Interner> ::rustc_data_structures::stable_hash::StableHash for
            NestedNormalizationGoals<I> where
            Vec<(GoalSource,
            Goal<I,
            I::Predicate>)>: ::rustc_data_structures::stable_hash::StableHash
            {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    NestedNormalizationGoals(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash_NoContext))]
711pub struct NestedNormalizationGoals<I: Interner>(pub Vec<(GoalSource, Goal<I, I::Predicate>)>);
712
713impl<I: Interner> Eq for NestedNormalizationGoals<I> {}
714
715impl<I: Interner> NestedNormalizationGoals<I> {
716    pub fn empty() -> Self {
717        NestedNormalizationGoals(::alloc::vec::Vec::new()vec![])
718    }
719
720    pub fn is_empty(&self) -> bool {
721        self.0.is_empty()
722    }
723}
724
725#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for Certainty { }
#[automatically_derived]
impl ::core::clone::Clone for Certainty {
    #[inline]
    fn clone(&self) -> Self {
        let _: ::core::clone::AssertParamIsClone<MaybeInfo>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for Certainty { }Copy, #[automatically_derived]
impl ::core::hash::Hash for Certainty {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
            state);
        match self {
            Self::Maybe(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            _ => {}
        }
    }
}Hash, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for Certainty { }
#[automatically_derived]
impl ::core::cmp::PartialEq for Certainty {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
                ::core::intrinsics::discriminant_value(other) &&
            match (self, other) {
                (Self::Maybe(__self_0), Self::Maybe(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Certainty {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<MaybeInfo>;
    }
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for Certainty {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Self::Yes => ::core::fmt::Formatter::write_str(f, "Yes"),
            Self::Maybe(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Maybe",
                    &__self_0),
        }
    }
}Debug)]
726#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for Certainty {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    Certainty::Yes => {}
                    Certainty::Maybe(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash))]
727pub enum Certainty {
728    Yes,
729    Maybe(MaybeInfo),
730}
731
732#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for MaybeInfo { }
#[automatically_derived]
impl ::core::clone::Clone for MaybeInfo {
    #[inline]
    fn clone(&self) -> Self {
        let _: ::core::clone::AssertParamIsClone<MaybeCause>;
        let _: ::core::clone::AssertParamIsClone<OpaqueTypesJank>;
        let _: ::core::clone::AssertParamIsClone<StalledOnCoroutines>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for MaybeInfo { }Copy, #[automatically_derived]
impl ::core::hash::Hash for MaybeInfo {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.cause, state);
        ::core::hash::Hash::hash(&self.opaque_types_jank, state);
        ::core::hash::Hash::hash(&self.stalled_on_coroutines, state)
    }
}Hash, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for MaybeInfo { }
#[automatically_derived]
impl ::core::cmp::PartialEq for MaybeInfo {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        self.cause == other.cause &&
                self.opaque_types_jank == other.opaque_types_jank &&
            self.stalled_on_coroutines == other.stalled_on_coroutines
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for MaybeInfo {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<MaybeCause>;
        let _: ::core::cmp::AssertParamIsEq<OpaqueTypesJank>;
        let _: ::core::cmp::AssertParamIsEq<StalledOnCoroutines>;
    }
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for MaybeInfo {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "MaybeInfo",
            "cause", &self.cause, "opaque_types_jank",
            &self.opaque_types_jank, "stalled_on_coroutines",
            &&self.stalled_on_coroutines)
    }
}Debug)]
733#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for MaybeInfo {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    MaybeInfo {
                        cause: ref __binding_0,
                        opaque_types_jank: ref __binding_1,
                        stalled_on_coroutines: ref __binding_2 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash_NoContext))]
734pub struct MaybeInfo {
735    pub cause: MaybeCause,
736    pub opaque_types_jank: OpaqueTypesJank,
737    pub stalled_on_coroutines: StalledOnCoroutines,
738}
739
740impl MaybeInfo {
741    pub const AMBIGUOUS: MaybeInfo = MaybeInfo {
742        cause: MaybeCause::Ambiguity,
743        opaque_types_jank: OpaqueTypesJank::AllGood,
744        stalled_on_coroutines: StalledOnCoroutines::No,
745    };
746
747    fn and(self, other: MaybeInfo) -> MaybeInfo {
748        MaybeInfo {
749            cause: self.cause.and(other.cause),
750            opaque_types_jank: self.opaque_types_jank.and(other.opaque_types_jank),
751            stalled_on_coroutines: self.stalled_on_coroutines.and(other.stalled_on_coroutines),
752        }
753    }
754
755    pub fn or(self, other: MaybeInfo) -> MaybeInfo {
756        MaybeInfo {
757            cause: self.cause.or(other.cause),
758            opaque_types_jank: self.opaque_types_jank.or(other.opaque_types_jank),
759            stalled_on_coroutines: self.stalled_on_coroutines.or(other.stalled_on_coroutines),
760        }
761    }
762}
763
764/// Supporting not-yet-defined opaque types in HIR typeck is somewhat
765/// challenging. Ideally we'd normalize them to a new inference variable
766/// and just defer type inference which relies on the opaque until we've
767/// constrained the hidden type.
768///
769/// This doesn't work for method and function calls as we need to guide type
770/// inference for the function arguments. We treat not-yet-defined opaque types
771/// as if they were rigid instead in these places.
772///
773/// When we encounter a `?hidden_type_of_opaque: Trait<?var>` goal, we use the
774/// item bounds and blanket impls to guide inference by constraining other type
775/// variables, see `EvalCtxt::try_assemble_bounds_via_registered_opaques`. We
776/// always keep the certainty as `Maybe` so that we properly prove these goals
777/// once the hidden type has been constrained.
778///
779/// If we fail to prove the trait goal via item bounds or blanket impls, the
780/// goal would have errored if the opaque type were rigid. In this case, we
781/// set `OpaqueTypesJank::ErrorIfRigidSelfTy` in the [Certainty].
782///
783/// Places in HIR typeck where we want to treat not-yet-defined opaque types as if
784/// they were kind of rigid then use `fn root_goal_may_hold_opaque_types_jank` which
785/// returns `false` if the goal doesn't hold or if `OpaqueTypesJank::ErrorIfRigidSelfTy`
786/// is set (i.e. proving it required relies on some `?hidden_ty: NotInItemBounds` goal).
787///
788/// This is subtly different from actually treating not-yet-defined opaque types as
789/// rigid, e.g. it allows constraining opaque types if they are not the self-type of
790/// a goal. It is good enough for now and only matters for very rare type inference
791/// edge cases. We can improve this later on if necessary.
792#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for OpaqueTypesJank { }
#[automatically_derived]
impl ::core::clone::Clone for OpaqueTypesJank {
    #[inline]
    fn clone(&self) -> Self { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for OpaqueTypesJank { }Copy, #[automatically_derived]
impl ::core::hash::Hash for OpaqueTypesJank {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
            state)
    }
}Hash, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for OpaqueTypesJank { }
#[automatically_derived]
impl ::core::cmp::PartialEq for OpaqueTypesJank {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
            ::core::intrinsics::discriminant_value(other)
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for OpaqueTypesJank { }Eq, #[automatically_derived]
impl ::core::fmt::Debug for OpaqueTypesJank {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                OpaqueTypesJank::AllGood => "AllGood",
                OpaqueTypesJank::ErrorIfRigidSelfTy => "ErrorIfRigidSelfTy",
            })
    }
}Debug)]
793#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            OpaqueTypesJank {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    OpaqueTypesJank::AllGood => {}
                    OpaqueTypesJank::ErrorIfRigidSelfTy => {}
                }
            }
        }
    };StableHash))]
794pub enum OpaqueTypesJank {
795    AllGood,
796    ErrorIfRigidSelfTy,
797}
798impl OpaqueTypesJank {
799    fn and(self, other: OpaqueTypesJank) -> OpaqueTypesJank {
800        match (self, other) {
801            (OpaqueTypesJank::AllGood, OpaqueTypesJank::AllGood) => OpaqueTypesJank::AllGood,
802            (OpaqueTypesJank::ErrorIfRigidSelfTy, _) | (_, OpaqueTypesJank::ErrorIfRigidSelfTy) => {
803                OpaqueTypesJank::ErrorIfRigidSelfTy
804            }
805        }
806    }
807
808    pub fn or(self, other: OpaqueTypesJank) -> OpaqueTypesJank {
809        match (self, other) {
810            (OpaqueTypesJank::ErrorIfRigidSelfTy, OpaqueTypesJank::ErrorIfRigidSelfTy) => {
811                OpaqueTypesJank::ErrorIfRigidSelfTy
812            }
813            (OpaqueTypesJank::AllGood, _) | (_, OpaqueTypesJank::AllGood) => {
814                OpaqueTypesJank::AllGood
815            }
816        }
817    }
818}
819
820#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for StalledOnCoroutines { }
#[automatically_derived]
impl ::core::clone::Clone for StalledOnCoroutines {
    #[inline]
    fn clone(&self) -> Self { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for StalledOnCoroutines { }Copy, #[automatically_derived]
impl ::core::hash::Hash for StalledOnCoroutines {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
            state)
    }
}Hash, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for StalledOnCoroutines { }
#[automatically_derived]
impl ::core::cmp::PartialEq for StalledOnCoroutines {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
            ::core::intrinsics::discriminant_value(other)
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for StalledOnCoroutines { }Eq, #[automatically_derived]
impl ::core::fmt::Debug for StalledOnCoroutines {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                StalledOnCoroutines::Yes => "Yes",
                StalledOnCoroutines::No => "No",
            })
    }
}Debug)]
821#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            StalledOnCoroutines {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    StalledOnCoroutines::Yes => {}
                    StalledOnCoroutines::No => {}
                }
            }
        }
    };StableHash_NoContext))]
822pub enum StalledOnCoroutines {
823    Yes,
824    No,
825}
826
827impl StalledOnCoroutines {
828    fn and(self, other: StalledOnCoroutines) -> StalledOnCoroutines {
829        match (self, other) {
830            (StalledOnCoroutines::No, StalledOnCoroutines::No) => StalledOnCoroutines::No,
831            (StalledOnCoroutines::Yes, _) | (_, StalledOnCoroutines::Yes) => {
832                StalledOnCoroutines::Yes
833            }
834        }
835    }
836
837    pub fn or(self, other: StalledOnCoroutines) -> StalledOnCoroutines {
838        // `StalledOnCoroutines::Yes` is contagious: obtaining `Certainty::Maybe`
839        // while a candidate is stalled on a coroutine might have been
840        // `Certainty::Yes` or `NoSolution` if it were not stalled.
841        StalledOnCoroutines::and(self, other)
842    }
843}
844
845impl Certainty {
846    pub const AMBIGUOUS: Certainty = Certainty::Maybe(MaybeInfo::AMBIGUOUS);
847
848    /// Use this function to merge the certainty of multiple nested subgoals.
849    ///
850    /// Given an impl like `impl<T: Foo + Bar> Baz for T {}`, we have 2 nested
851    /// subgoals whenever we use the impl as a candidate: `T: Foo` and `T: Bar`.
852    /// If evaluating `T: Foo` results in ambiguity and `T: Bar` results in
853    /// success, we merge these two responses. This results in ambiguity.
854    ///
855    /// If we unify ambiguity with overflow, we return overflow. This doesn't matter
856    /// inside of the solver as we do not distinguish ambiguity from overflow. It does
857    /// however matter for diagnostics. If `T: Foo` resulted in overflow and `T: Bar`
858    /// in ambiguity without changing the inference state, we still want to tell the
859    /// user that `T: Baz` results in overflow.
860    pub fn and(self, other: Certainty) -> Certainty {
861        match (self, other) {
862            (Certainty::Yes, Certainty::Yes) => Certainty::Yes,
863            (Certainty::Yes, Certainty::Maybe { .. }) => other,
864            (Certainty::Maybe { .. }, Certainty::Yes) => self,
865            (Certainty::Maybe(a_maybe), Certainty::Maybe(b_maybe)) => {
866                Certainty::Maybe(a_maybe.and(b_maybe))
867            }
868        }
869    }
870
871    pub const fn overflow(suggest_increasing_limit: bool) -> Certainty {
872        Certainty::Maybe(MaybeInfo {
873            cause: MaybeCause::Overflow { suggest_increasing_limit, keep_constraints: false },
874            opaque_types_jank: OpaqueTypesJank::AllGood,
875            stalled_on_coroutines: StalledOnCoroutines::No,
876        })
877    }
878
879    pub fn is_yes(&self) -> bool {
880        match self {
881            Certainty::Yes => true,
882            Certainty::Maybe(_) => false,
883        }
884    }
885
886    pub fn is_overflow(&self) -> bool {
887        match self {
888            Certainty::Maybe(MaybeInfo { cause: MaybeCause::Overflow { .. }, .. }) => true,
889            _ => false,
890        }
891    }
892}
893
894/// Why we failed to evaluate a goal.
895#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for MaybeCause { }
#[automatically_derived]
impl ::core::clone::Clone for MaybeCause {
    #[inline]
    fn clone(&self) -> Self {
        let _: ::core::clone::AssertParamIsClone<bool>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for MaybeCause { }Copy, #[automatically_derived]
impl ::core::hash::Hash for MaybeCause {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
            state);
        match self {
            Self::Overflow {
                suggest_increasing_limit: __self_0, keep_constraints: __self_1
                } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            _ => {}
        }
    }
}Hash, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for MaybeCause { }
#[automatically_derived]
impl ::core::cmp::PartialEq for MaybeCause {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
                ::core::intrinsics::discriminant_value(other) &&
            match (self, other) {
                (Self::Overflow {
                    suggest_increasing_limit: __self_0,
                    keep_constraints: __self_1 }, Self::Overflow {
                    suggest_increasing_limit: __arg1_0,
                    keep_constraints: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for MaybeCause {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<bool>;
    }
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for MaybeCause {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Self::Ambiguity =>
                ::core::fmt::Formatter::write_str(f, "Ambiguity"),
            Self::Overflow {
                suggest_increasing_limit: __self_0, keep_constraints: __self_1
                } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "Overflow", "suggest_increasing_limit", __self_0,
                    "keep_constraints", &__self_1),
        }
    }
}Debug)]
896#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for MaybeCause {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    MaybeCause::Ambiguity => {}
                    MaybeCause::Overflow {
                        suggest_increasing_limit: ref __binding_0,
                        keep_constraints: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash))]
897pub enum MaybeCause {
898    /// We failed due to ambiguity. This ambiguity can either
899    /// be a true ambiguity, i.e. there are multiple different answers,
900    /// or we hit a case where we just don't bother, e.g. `?x: Trait` goals.
901    Ambiguity,
902    /// We gave up due to an overflow, most often by hitting the recursion limit.
903    Overflow { suggest_increasing_limit: bool, keep_constraints: bool },
904}
905
906impl MaybeCause {
907    fn and(self, other: MaybeCause) -> MaybeCause {
908        match (self, other) {
909            (MaybeCause::Ambiguity, MaybeCause::Ambiguity) => MaybeCause::Ambiguity,
910            (MaybeCause::Ambiguity, MaybeCause::Overflow { .. }) => other,
911            (MaybeCause::Overflow { .. }, MaybeCause::Ambiguity) => self,
912            (
913                MaybeCause::Overflow {
914                    suggest_increasing_limit: limit_a,
915                    keep_constraints: keep_a,
916                },
917                MaybeCause::Overflow {
918                    suggest_increasing_limit: limit_b,
919                    keep_constraints: keep_b,
920                },
921            ) => MaybeCause::Overflow {
922                suggest_increasing_limit: limit_a && limit_b,
923                keep_constraints: keep_a && keep_b,
924            },
925        }
926    }
927
928    pub fn or(self, other: MaybeCause) -> MaybeCause {
929        match (self, other) {
930            (MaybeCause::Ambiguity, MaybeCause::Ambiguity) => MaybeCause::Ambiguity,
931
932            // When combining ambiguity + overflow, we can keep constraints.
933            (
934                MaybeCause::Ambiguity,
935                MaybeCause::Overflow { suggest_increasing_limit, keep_constraints: _ },
936            ) => MaybeCause::Overflow { suggest_increasing_limit, keep_constraints: true },
937            (
938                MaybeCause::Overflow { suggest_increasing_limit, keep_constraints: _ },
939                MaybeCause::Ambiguity,
940            ) => MaybeCause::Overflow { suggest_increasing_limit, keep_constraints: true },
941
942            (
943                MaybeCause::Overflow {
944                    suggest_increasing_limit: limit_a,
945                    keep_constraints: keep_a,
946                },
947                MaybeCause::Overflow {
948                    suggest_increasing_limit: limit_b,
949                    keep_constraints: keep_b,
950                },
951            ) => MaybeCause::Overflow {
952                suggest_increasing_limit: limit_a || limit_b,
953                keep_constraints: keep_a || keep_b,
954            },
955        }
956    }
957}
958
959/// Indicates that a `impl Drop for Adt` is `const` or not.
960#[derive(#[automatically_derived]
impl ::core::fmt::Debug for AdtDestructorKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                AdtDestructorKind::NotConst => "NotConst",
                AdtDestructorKind::Const => "Const",
            })
    }
}Debug)]
961pub enum AdtDestructorKind {
962    NotConst,
963    Const,
964}
965
966/// Which sizedness trait - `Sized`, `MetaSized`? `PointeeSized` is omitted as it is removed during
967/// lowering.
968#[derive(#[automatically_derived]
impl ::core::marker::Copy for SizedTraitKind { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for SizedTraitKind { }
#[automatically_derived]
impl ::core::clone::Clone for SizedTraitKind {
    #[inline]
    fn clone(&self) -> Self { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for SizedTraitKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                SizedTraitKind::Sized => "Sized",
                SizedTraitKind::MetaSized => "MetaSized",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::Eq for SizedTraitKind { }Eq, #[automatically_derived]
impl ::core::hash::Hash for SizedTraitKind {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
            state)
    }
}Hash, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for SizedTraitKind { }
#[automatically_derived]
impl ::core::cmp::PartialEq for SizedTraitKind {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
            ::core::intrinsics::discriminant_value(other)
    }
}PartialEq)]
969#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            SizedTraitKind {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    SizedTraitKind::Sized => {}
                    SizedTraitKind::MetaSized => {}
                }
            }
        }
    };StableHash))]
970pub enum SizedTraitKind {
971    /// `Sized` trait
972    Sized,
973    /// `MetaSized` trait
974    MetaSized,
975}
976
977impl SizedTraitKind {
978    /// Returns `DefId` of corresponding language item.
979    pub fn require_lang_item<I: Interner>(self, cx: I) -> I::TraitId {
980        cx.require_trait_lang_item(match self {
981            SizedTraitKind::Sized => SolverTraitLangItem::Sized,
982            SizedTraitKind::MetaSized => SolverTraitLangItem::MetaSized,
983        })
984    }
985}
986
987#[automatically_derived]
impl<I: Interner> ::core::clone::Clone for SucceededInErased<I> where
    I: Interner {
    #[inline]
    fn clone(&self) -> Self {
        match self {
            SucceededInErased::Yes {
                accessed_opaques: ref __field_accessed_opaques } =>
                SucceededInErased::Yes {
                    accessed_opaques: ::core::clone::Clone::clone(__field_accessed_opaques),
                },
            SucceededInErased::No => SucceededInErased::No,
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::fmt::Debug for SucceededInErased<I> where
    I: Interner {
    fn fmt(&self, __f: &mut ::core::fmt::Formatter<'_>)
        -> ::core::fmt::Result {
        match self {
            SucceededInErased::Yes {
                accessed_opaques: ref __field_accessed_opaques } => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_struct(__f, "Yes");
                ::core::fmt::DebugStruct::field(&mut __builder,
                    "accessed_opaques", __field_accessed_opaques);
                ::core::fmt::DebugStruct::finish(&mut __builder)
            }
            SucceededInErased::No =>
                ::core::fmt::Formatter::write_str(__f, "No"),
        }
    }
}#[derive_where(Clone, Debug; I: Interner)]
988pub enum SucceededInErased<I: Interner> {
989    /// This goal previously succeeded in erased mode, which based on `accessed_opaques`
990    /// might make us take a fast path slightly more often.
991    Yes {
992        accessed_opaques: AccessedOpaques<I>,
993    },
994    No,
995}
996
997#[automatically_derived]
impl<I: Interner> ::core::clone::Clone for GoalStalledOnOpaques<I> where
    I: Interner {
    #[inline]
    fn clone(&self) -> Self {
        match self {
            GoalStalledOnOpaques::No => GoalStalledOnOpaques::No,
            GoalStalledOnOpaques::Yes {
                num_opaques_in_storage: ref __field_num_opaques_in_storage,
                previously_succeeded_in_erased: ref __field_previously_succeeded_in_erased
                } =>
                GoalStalledOnOpaques::Yes {
                    num_opaques_in_storage: ::core::clone::Clone::clone(__field_num_opaques_in_storage),
                    previously_succeeded_in_erased: ::core::clone::Clone::clone(__field_previously_succeeded_in_erased),
                },
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::fmt::Debug for GoalStalledOnOpaques<I> where
    I: Interner {
    fn fmt(&self, __f: &mut ::core::fmt::Formatter<'_>)
        -> ::core::fmt::Result {
        match self {
            GoalStalledOnOpaques::No =>
                ::core::fmt::Formatter::write_str(__f, "No"),
            GoalStalledOnOpaques::Yes {
                num_opaques_in_storage: ref __field_num_opaques_in_storage,
                previously_succeeded_in_erased: ref __field_previously_succeeded_in_erased
                } => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_struct(__f, "Yes");
                ::core::fmt::DebugStruct::field(&mut __builder,
                    "num_opaques_in_storage", __field_num_opaques_in_storage);
                ::core::fmt::DebugStruct::field(&mut __builder,
                    "previously_succeeded_in_erased",
                    __field_previously_succeeded_in_erased);
                ::core::fmt::DebugStruct::finish(&mut __builder)
            }
        }
    }
}#[derive_where(Clone, Debug; I: Interner)]
998pub enum GoalStalledOnOpaques<I: Interner> {
999    /// This goal got stalled in `compute_goal_fast_path`. Usually this means
1000    /// the goal is stalled on not that much, only one or two variables, and
1001    /// definitely nothing to do with opaque types. So we don't store that information.
1002    No,
1003    Yes {
1004        num_opaques_in_storage: usize,
1005        previously_succeeded_in_erased: SucceededInErased<I>,
1006    },
1007}
1008
1009/// The conditions that must change for a goal to warrant
1010#[automatically_derived]
impl<I: Interner> ::core::clone::Clone for GoalStalledOn<I> where I: Interner
    {
    #[inline]
    fn clone(&self) -> Self {
        match self {
            GoalStalledOn {
                stalled_vars: ref __field_stalled_vars,
                sub_roots: ref __field_sub_roots,
                stalled_maybe_info: ref __field_stalled_maybe_info,
                opaques: ref __field_opaques } =>
                GoalStalledOn {
                    stalled_vars: ::core::clone::Clone::clone(__field_stalled_vars),
                    sub_roots: ::core::clone::Clone::clone(__field_sub_roots),
                    stalled_maybe_info: ::core::clone::Clone::clone(__field_stalled_maybe_info),
                    opaques: ::core::clone::Clone::clone(__field_opaques),
                },
        }
    }
}
#[automatically_derived]
impl<I: Interner> ::core::fmt::Debug for GoalStalledOn<I> where I: Interner {
    fn fmt(&self, __f: &mut ::core::fmt::Formatter<'_>)
        -> ::core::fmt::Result {
        match self {
            GoalStalledOn {
                stalled_vars: ref __field_stalled_vars,
                sub_roots: ref __field_sub_roots,
                stalled_maybe_info: ref __field_stalled_maybe_info,
                opaques: ref __field_opaques } => {
                let mut __builder =
                    ::core::fmt::Formatter::debug_struct(__f, "GoalStalledOn");
                ::core::fmt::DebugStruct::field(&mut __builder,
                    "stalled_vars", __field_stalled_vars);
                ::core::fmt::DebugStruct::field(&mut __builder, "sub_roots",
                    __field_sub_roots);
                ::core::fmt::DebugStruct::field(&mut __builder,
                    "stalled_maybe_info", __field_stalled_maybe_info);
                ::core::fmt::DebugStruct::field(&mut __builder, "opaques",
                    __field_opaques);
                ::core::fmt::DebugStruct::finish(&mut __builder)
            }
        }
    }
}#[derive_where(Clone, Debug; I: Interner)]
1011pub struct GoalStalledOn<I: Interner> {
1012    // `ThinVec` is important for performance. See #160005.
1013    pub stalled_vars: ThinVec<TyOrConstInferVar>,
1014    // `ThinVec` is important for performance. See #160005.
1015    pub sub_roots: ThinVec<TyVid>,
1016    /// The `MaybeInfo` that will be returned on subsequent evaluations if this
1017    /// goal remains stalled.
1018    pub stalled_maybe_info: MaybeInfo,
1019    pub opaques: GoalStalledOnOpaques<I>,
1020}
1021
1022/// For some goals we can trivially answer some questions without going through
1023/// canonicalization. There are three options:
1024#[derive(#[automatically_derived]
impl<I: ::core::clone::Clone + Interner> ::core::clone::Clone for
    ComputeGoalFastPathOutcome<I> {
    #[inline]
    fn clone(&self) -> Self {
        match self {
            Self::NoFastPath => Self::NoFastPath,
            Self::TriviallyHolds => Self::TriviallyHolds,
            Self::TriviallyStalled { stalled_on: __self_0 } =>
                Self::TriviallyStalled {
                    stalled_on: ::core::clone::Clone::clone(__self_0),
                },
        }
    }
}Clone, #[automatically_derived]
impl<I: ::core::fmt::Debug + Interner> ::core::fmt::Debug for
    ComputeGoalFastPathOutcome<I> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Self::NoFastPath =>
                ::core::fmt::Formatter::write_str(f, "NoFastPath"),
            Self::TriviallyHolds =>
                ::core::fmt::Formatter::write_str(f, "TriviallyHolds"),
            Self::TriviallyStalled { stalled_on: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "TriviallyStalled", "stalled_on", &__self_0),
        }
    }
}Debug)]
1025pub enum ComputeGoalFastPathOutcome<I: Interner> {
1026    /// Do not attempt the fast path. Compute as normal.
1027    NoFastPath,
1028    /// The goal trivially holds, immediately produce a result with [`Certainty::Yes`]
1029    TriviallyHolds,
1030    /// The goal is trivially stalled: we know for sure that it makes no sense to compute it right
1031    /// now, but can return information about what its stalled on and when it can be computed for real.
1032    TriviallyStalled { stalled_on: GoalStalledOn<I> },
1033}
1034
1035/// Helper for `InferCtxt::ty_or_const_infer_var_changed` (see comment on that), used
1036/// for `traits::fulfill`'s list of `stalled_on` inference variables and for merging
1037/// ambiguity errors caused by the same inference variable during error reporting.
1038#[derive(#[automatically_derived]
impl ::core::marker::Copy for TyOrConstInferVar { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for TyOrConstInferVar { }
#[automatically_derived]
impl ::core::clone::Clone for TyOrConstInferVar {
    #[inline]
    fn clone(&self) -> Self {
        let _: ::core::clone::AssertParamIsClone<TyVid>;
        let _: ::core::clone::AssertParamIsClone<IntVid>;
        let _: ::core::clone::AssertParamIsClone<FloatVid>;
        let _: ::core::clone::AssertParamIsClone<ConstVid>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for TyOrConstInferVar {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Self::Ty(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Ty",
                    &__self_0),
            Self::TyInt(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "TyInt",
                    &__self_0),
            Self::TyFloat(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "TyFloat", &__self_0),
            Self::Const(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Const",
                    &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for TyOrConstInferVar { }
#[automatically_derived]
impl ::core::cmp::PartialEq for TyOrConstInferVar {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
                ::core::intrinsics::discriminant_value(other) &&
            match (self, other) {
                (Self::Ty(__self_0), Self::Ty(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (Self::TyInt(__self_0), Self::TyInt(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (Self::TyFloat(__self_0), Self::TyFloat(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (Self::Const(__self_0), Self::Const(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for TyOrConstInferVar {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<TyVid>;
        let _: ::core::cmp::AssertParamIsEq<IntVid>;
        let _: ::core::cmp::AssertParamIsEq<FloatVid>;
        let _: ::core::cmp::AssertParamIsEq<ConstVid>;
    }
}Eq)]
1039pub enum TyOrConstInferVar {
1040    /// Equivalent to `ty::Infer(ty::TyVar(_))`.
1041    Ty(TyVid),
1042    /// Equivalent to `ty::Infer(ty::IntVar(_))`.
1043    TyInt(IntVid),
1044    /// Equivalent to `ty::Infer(ty::FloatVar(_))`.
1045    TyFloat(FloatVid),
1046
1047    /// Equivalent to `ty::ConstKind::Infer(ty::InferConst::Var(_))`.
1048    Const(ConstVid),
1049}
1050
1051impl TyOrConstInferVar {
1052    pub fn as_type<I: Interner>(&self, interner: I) -> Option<I::Ty> {
1053        match self {
1054            Self::Ty(vid) => Some(I::Ty::new_var(interner, *vid)),
1055            Self::TyInt(_) | Self::TyFloat(_) | Self::Const(_) => None,
1056        }
1057    }
1058
1059    /// Tries to extract an inference variable from a type or a constant, returns `None`
1060    /// for types other than `ty::Infer(_)` (or `InferTy::Fresh*`) and
1061    /// for constants other than `ty::ConstKind::Infer(_)` (or `InferConst::Fresh`).
1062    pub fn maybe_from_generic_arg<I: Interner>(arg: I::GenericArg) -> Option<Self> {
1063        match arg.kind() {
1064            GenericArgKind::Type(ty) => Self::maybe_from_ty::<I>(ty),
1065            GenericArgKind::Const(ct) => Self::maybe_from_const::<I>(ct),
1066            GenericArgKind::Lifetime(_) => None,
1067        }
1068    }
1069
1070    /// Tries to extract an inference variable from a type or a constant, returns `None`
1071    /// for types other than `ty::Infer(_)` (or `InferTy::Fresh*`) and
1072    /// for constants other than `ty::ConstKind::Infer(_)` (or `InferConst::Fresh`).
1073    pub fn maybe_from_term<I: Interner>(term: I::Term) -> Option<Self> {
1074        match term.kind() {
1075            TermKind::Ty(ty) => Self::maybe_from_ty::<I>(ty),
1076            TermKind::Const(ct) => Self::maybe_from_const::<I>(ct),
1077        }
1078    }
1079
1080    /// Tries to extract an inference variable from a type, returns `None`
1081    /// for types other than `ty::Infer(_)` (or `InferTy::Fresh*`).
1082    fn maybe_from_ty<I: Interner>(ty: I::Ty) -> Option<Self> {
1083        match ty.kind() {
1084            ty::Infer(ty::TyVar(v)) => Some(TyOrConstInferVar::Ty(v)),
1085            ty::Infer(ty::IntVar(v)) => Some(TyOrConstInferVar::TyInt(v)),
1086            ty::Infer(ty::FloatVar(v)) => Some(TyOrConstInferVar::TyFloat(v)),
1087            _ => None,
1088        }
1089    }
1090
1091    /// Tries to extract an inference variable from a constant, returns `None`
1092    /// for constants other than `ty::ConstKind::Infer(_)` (or `InferConst::Fresh`).
1093    fn maybe_from_const<I: Interner>(ct: Const<I>) -> Option<Self> {
1094        match ct.kind() {
1095            ty::ConstKind::Infer(InferConst::Var(v)) => Some(TyOrConstInferVar::Const(v)),
1096            _ => None,
1097        }
1098    }
1099}