Skip to main content

GoalEvaluation

Struct GoalEvaluation 

pub(crate) struct GoalEvaluation<I>
where I: Interner,
{ pub uncanonicalized_goal: Goal<I, <I as Interner>::Predicate>, pub orig_values: Vec<<I as Interner>::GenericArg>, pub final_revision: <I as Interner>::Probe, pub result: Result<Canonical<I, Response<I>>, NoSolution>, }
Expand description

When evaluating a goal we also store the original values for the CanonicalVarValues of the canonicalized goal. We use this to map any CanonicalState from the local InferCtxt of the solver query to the InferCtxt of the caller.

Fields§

§uncanonicalized_goal: Goal<I, <I as Interner>::Predicate>§orig_values: Vec<<I as Interner>::GenericArg>§final_revision: <I as Interner>::Probe§result: Result<Canonical<I, Response<I>>, NoSolution>

Trait Implementations§

§

impl<I> Hash for GoalEvaluation<I>
where I: Interner,

§

fn hash<__H>(&self, __state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<I> PartialEq for GoalEvaluation<I>
where I: Interner,

§

fn eq(&self, __other: &GoalEvaluation<I>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<I> Eq for GoalEvaluation<I>
where I: Interner,

Auto Trait Implementations§

§

impl<I> Freeze for GoalEvaluation<I>
where <I as Interner>::Probe: Freeze, <I as Interner>::ParamEnv: Freeze, <I as Interner>::Predicate: Freeze, <I as Interner>::CanonicalVarKinds: Freeze, <I as Interner>::ExternalConstraints: Freeze, <I as Interner>::GenericArgs: Freeze,

§

impl<I> RefUnwindSafe for GoalEvaluation<I>
where <I as Interner>::Probe: RefUnwindSafe, <I as Interner>::ParamEnv: RefUnwindSafe, <I as Interner>::Predicate: RefUnwindSafe, <I as Interner>::CanonicalVarKinds: RefUnwindSafe, <I as Interner>::GenericArg: RefUnwindSafe, <I as Interner>::ExternalConstraints: RefUnwindSafe, <I as Interner>::GenericArgs: RefUnwindSafe,

§

impl<I> Send for GoalEvaluation<I>
where <I as Interner>::Probe: Send, <I as Interner>::ParamEnv: Send, <I as Interner>::Predicate: Send, <I as Interner>::CanonicalVarKinds: Send, <I as Interner>::GenericArg: Send, <I as Interner>::ExternalConstraints: Send, <I as Interner>::GenericArgs: Send,

§

impl<I> Sync for GoalEvaluation<I>
where <I as Interner>::Probe: Sync, <I as Interner>::ParamEnv: Sync, <I as Interner>::Predicate: Sync, <I as Interner>::CanonicalVarKinds: Sync, <I as Interner>::GenericArg: Sync, <I as Interner>::ExternalConstraints: Sync, <I as Interner>::GenericArgs: Sync,

§

impl<I> Unpin for GoalEvaluation<I>
where <I as Interner>::Probe: Unpin, <I as Interner>::ParamEnv: Unpin, <I as Interner>::Predicate: Unpin, <I as Interner>::CanonicalVarKinds: Unpin, <I as Interner>::GenericArg: Unpin, <I as Interner>::ExternalConstraints: Unpin, <I as Interner>::GenericArgs: Unpin,

§

impl<I> UnsafeUnpin for GoalEvaluation<I>
where <I as Interner>::Probe: UnsafeUnpin, <I as Interner>::ParamEnv: UnsafeUnpin, <I as Interner>::Predicate: UnsafeUnpin, <I as Interner>::CanonicalVarKinds: UnsafeUnpin, <I as Interner>::ExternalConstraints: UnsafeUnpin, <I as Interner>::GenericArgs: UnsafeUnpin,

§

impl<I> UnwindSafe for GoalEvaluation<I>
where <I as Interner>::Probe: UnwindSafe, <I as Interner>::ParamEnv: UnwindSafe, <I as Interner>::Predicate: UnwindSafe, <I as Interner>::CanonicalVarKinds: UnwindSafe, <I as Interner>::GenericArg: UnwindSafe, <I as Interner>::ExternalConstraints: UnwindSafe, <I as Interner>::GenericArgs: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T, R> CollectAndApply<T, R> for T

§

fn collect_and_apply<I, F>(iter: I, f: F) -> R
where I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

§

type Output = R

§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> HashEqLike<&T> for T
where T: Hash + Eq,

§

fn hash<H>(&self, h: &mut H)
where H: Hasher,

§

fn eq(&self, data: &&T) -> bool

§

impl<T> HashEqLike<T> for T
where T: Hash + Eq,

§

fn hash<H>(&self, h: &mut H)
where H: Hasher,

§

fn eq(&self, data: &T) -> bool

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> IntoBox<dyn Any> for T
where T: Any,

§

fn into_box(self) -> Box<dyn Any>

Convert self into the appropriate boxed form.
§

impl<T> IntoBox<dyn Any + Send> for T
where T: Any + Send,

§

fn into_box(self) -> Box<dyn Any + Send>

Convert self into the appropriate boxed form.
§

impl<T> IntoBox<dyn Any + Send + Sync> for T
where T: Any + Send + Sync,

§

fn into_box(self) -> Box<dyn Any + Send + Sync>

Convert self into the appropriate boxed form.
Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Lookup<T> for T

§

fn into_owned(self) -> T

§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<I, T, U> Upcast<I, U> for T
where U: UpcastFrom<I, T>,

§

fn upcast(self, interner: I) -> U

§

impl<I, T> UpcastFrom<I, T> for T

§

fn upcast_from(from: T, _tcx: I) -> T

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more