Struct rustc_infer::traits::Obligation
source · [−]pub struct Obligation<'tcx, T> {
pub cause: ObligationCause<'tcx>,
pub param_env: ParamEnv<'tcx>,
pub predicate: T,
pub recursion_depth: usize,
}
Expand description
An Obligation
represents some trait reference (e.g., i32: Eq
) for
which the “impl_source” must be found. The process of finding an “impl_source” is
called “resolving” the Obligation
. This process consists of
either identifying an impl
(e.g., impl Eq for i32
) that
satisfies the obligation, or else finding a bound that is in
scope. The eventual result is usually a Selection
(defined below).
Fields
cause: ObligationCause<'tcx>
The reason we have to prove this thing.
param_env: ParamEnv<'tcx>
The environment in which we should prove this thing.
predicate: T
The thing we are trying to prove.
recursion_depth: usize
If we started proving this as a result of trying to prove something else, track the total depth to ensure termination. If this goes over a certain threshold, we abort compilation – in such cases, we can not say whether or not the predicate holds for certain. Stupid halting problem; such a drag.
Implementations
sourceimpl<'tcx> Obligation<'tcx, Predicate<'tcx>>
impl<'tcx> Obligation<'tcx, Predicate<'tcx>>
sourcepub fn flip_polarity(
&self,
tcx: TyCtxt<'tcx>
) -> Option<PredicateObligation<'tcx>>
pub fn flip_polarity(
&self,
tcx: TyCtxt<'tcx>
) -> Option<PredicateObligation<'tcx>>
Flips the polarity of the inner predicate.
Given T: Trait
predicate it returns T: !Trait
and given T: !Trait
returns T: Trait
.
sourceimpl<'tcx> Obligation<'tcx, Binder<'tcx, TraitPredicate<'tcx>>>
impl<'tcx> Obligation<'tcx, Binder<'tcx, TraitPredicate<'tcx>>>
sourcepub fn is_const(&self) -> bool
pub fn is_const(&self) -> bool
Returns true
if the trait predicate is considered const
in its ParamEnv.
pub fn derived_cause(
&self,
variant: impl FnOnce(DerivedObligationCause<'tcx>) -> ObligationCauseCode<'tcx>
) -> ObligationCause<'tcx>
sourceimpl<'tcx, O> Obligation<'tcx, O>
impl<'tcx, O> Obligation<'tcx, O>
pub fn new(
cause: ObligationCause<'tcx>,
param_env: ParamEnv<'tcx>,
predicate: O
) -> Obligation<'tcx, O>
pub fn with_depth(
cause: ObligationCause<'tcx>,
recursion_depth: usize,
param_env: ParamEnv<'tcx>,
predicate: O
) -> Obligation<'tcx, O>
pub fn misc(
span: Span,
body_id: HirId,
param_env: ParamEnv<'tcx>,
trait_ref: O
) -> Obligation<'tcx, O>
pub fn with<P>(&self, value: P) -> Obligation<'tcx, P>
sourceimpl<'tcx> Obligation<'tcx, Binder<'tcx, TraitPredicate<'tcx>>>
impl<'tcx> Obligation<'tcx, Binder<'tcx, TraitPredicate<'tcx>>>
Trait Implementations
sourceimpl<'tcx, T: Clone> Clone for Obligation<'tcx, T>
impl<'tcx, T: Clone> Clone for Obligation<'tcx, T>
sourcefn clone(&self) -> Obligation<'tcx, T>
fn clone(&self) -> Obligation<'tcx, T>
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl<'tcx, O: Debug> Debug for Obligation<'tcx, O>
impl<'tcx, O: Debug> Debug for Obligation<'tcx, O>
sourceimpl<'tcx, T: Hash> Hash for Obligation<'tcx, T>
impl<'tcx, T: Hash> Hash for Obligation<'tcx, T>
sourceimpl<'tcx, T: PartialEq> PartialEq<Obligation<'tcx, T>> for Obligation<'tcx, T>
impl<'tcx, T: PartialEq> PartialEq<Obligation<'tcx, T>> for Obligation<'tcx, T>
sourcefn eq(&self, other: &Obligation<'tcx, T>) -> bool
fn eq(&self, other: &Obligation<'tcx, T>) -> bool
sourceimpl<'tcx, O: TypeFoldable<'tcx>> TypeFoldable<'tcx> for Obligation<'tcx, O>
impl<'tcx, O: TypeFoldable<'tcx>> TypeFoldable<'tcx> for Obligation<'tcx, O>
sourcefn try_fold_with<F: FallibleTypeFolder<'tcx>>(
self,
folder: &mut F
) -> Result<Self, F::Error>
fn try_fold_with<F: FallibleTypeFolder<'tcx>>(
self,
folder: &mut F
) -> Result<Self, F::Error>
sourcefn fold_with<F>(self, folder: &mut F) -> Selfwhere
F: TypeFolder<'tcx>,
fn fold_with<F>(self, folder: &mut F) -> Selfwhere
F: TypeFolder<'tcx>,
try_fold_with
for use with infallible
folders. Do not override this method, to ensure coherence with
try_fold_with
. Read moresourceimpl<'tcx, O: TypeVisitable<'tcx>> TypeVisitable<'tcx> for Obligation<'tcx, O>
impl<'tcx, O: TypeVisitable<'tcx>> TypeVisitable<'tcx> for Obligation<'tcx, O>
sourcefn visit_with<V: TypeVisitor<'tcx>>(
&self,
visitor: &mut V
) -> ControlFlow<V::BreakTy>
fn visit_with<V: TypeVisitor<'tcx>>(
&self,
visitor: &mut V
) -> ControlFlow<V::BreakTy>
sourcefn has_vars_bound_at_or_above(&self, binder: DebruijnIndex) -> bool
fn has_vars_bound_at_or_above(&self, binder: DebruijnIndex) -> bool
true
if self
has any late-bound regions that are either
bound by binder
or bound by some binder outside of binder
.
If binder
is ty::INNERMOST
, this indicates whether
there are any late-bound regions that appear free. Read moresourcefn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
fn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
true
if this self
has any regions that escape binder
(and
hence are not bound by it). Read morefn has_escaping_bound_vars(&self) -> bool
fn has_type_flags(&self, flags: TypeFlags) -> bool
fn has_projections(&self) -> bool
fn has_opaque_types(&self) -> bool
fn references_error(&self) -> bool
fn error_reported(&self) -> Option<ErrorGuaranteed>
fn has_param_types_or_consts(&self) -> bool
fn has_infer_regions(&self) -> bool
fn has_infer_types(&self) -> bool
fn has_infer_types_or_consts(&self) -> bool
fn needs_infer(&self) -> bool
fn has_placeholders(&self) -> bool
fn needs_subst(&self) -> bool
sourcefn has_free_regions(&self) -> bool
fn has_free_regions(&self) -> bool
fn has_erased_regions(&self) -> bool
sourcefn has_erasable_regions(&self) -> bool
fn has_erasable_regions(&self) -> bool
sourcefn is_global(&self) -> bool
fn is_global(&self) -> bool
sourcefn has_late_bound_regions(&self) -> bool
fn has_late_bound_regions(&self) -> bool
sourcefn still_further_specializable(&self) -> bool
fn still_further_specializable(&self) -> bool
impl
specialization. Read moreimpl<'tcx, T: Eq> Eq for Obligation<'tcx, T>
impl<'tcx, T> StructuralEq for Obligation<'tcx, T>
impl<'tcx, T> StructuralPartialEq for Obligation<'tcx, T>
Auto Trait Implementations
impl<'tcx, T> !RefUnwindSafe for Obligation<'tcx, T>
impl<'tcx, T> !Send for Obligation<'tcx, T>
impl<'tcx, T> !Sync for Obligation<'tcx, T>
impl<'tcx, T> Unpin for Obligation<'tcx, T>where
T: Unpin,
impl<'tcx, T> !UnwindSafe for Obligation<'tcx, T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<'tcx, T> IsSuggestable<'tcx> for Twhere
T: TypeVisitable<'tcx>,
impl<'tcx, T> IsSuggestable<'tcx> for Twhere
T: TypeVisitable<'tcx>,
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
Layout
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.