Struct rustc_infer::infer::equate::Equate
source · pub struct Equate<'combine, 'infcx, 'tcx> {
fields: &'combine mut CombineFields<'infcx, 'tcx>,
a_is_expected: bool,
}
Expand description
Ensures a
is made equal to b
. Returns a
on success.
Fields
fields: &'combine mut CombineFields<'infcx, 'tcx>
a_is_expected: bool
Implementations
Trait Implementations
sourceimpl<'tcx> ConstEquateRelation<'tcx> for Equate<'_, '_, 'tcx>
impl<'tcx> ConstEquateRelation<'tcx> for Equate<'_, '_, 'tcx>
sourcefn const_equate_obligation(&mut self, a: Const<'tcx>, b: Const<'tcx>)
fn const_equate_obligation(&mut self, a: Const<'tcx>, b: Const<'tcx>)
Register an obligation that both constants must be equal to each other. Read more
sourceimpl<'tcx> TypeRelation<'tcx> for Equate<'_, '_, 'tcx>
impl<'tcx> TypeRelation<'tcx> for Equate<'_, '_, 'tcx>
fn tcx(&self) -> TyCtxt<'tcx>
fn param_env(&self) -> ParamEnv<'tcx>
sourcefn a_is_expected(&self) -> bool
fn a_is_expected(&self) -> bool
Returns
true
if the value a
is the “expected” type in the
relation. Just affects error messages. Read moresourcefn relate_item_substs(
&mut self,
_item_def_id: DefId,
a_subst: SubstsRef<'tcx>,
b_subst: SubstsRef<'tcx>
) -> RelateResult<'tcx, SubstsRef<'tcx>>
fn relate_item_substs(
&mut self,
_item_def_id: DefId,
a_subst: SubstsRef<'tcx>,
b_subst: SubstsRef<'tcx>
) -> RelateResult<'tcx, SubstsRef<'tcx>>
Relate the two substitutions for the given item. The default
is to look up the variance for the item and proceed
accordingly. Read more
sourcefn relate_with_variance<T: Relate<'tcx>>(
&mut self,
_: Variance,
_info: VarianceDiagInfo<'tcx>,
a: T,
b: T
) -> RelateResult<'tcx, T>
fn relate_with_variance<T: Relate<'tcx>>(
&mut self,
_: Variance,
_info: VarianceDiagInfo<'tcx>,
a: T,
b: T
) -> RelateResult<'tcx, T>
Switch variance for the purpose of relating
a
and b
.fn tys(&mut self, a: Ty<'tcx>, b: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>>
fn regions(
&mut self,
a: Region<'tcx>,
b: Region<'tcx>
) -> RelateResult<'tcx, Region<'tcx>>
fn consts(
&mut self,
a: Const<'tcx>,
b: Const<'tcx>
) -> RelateResult<'tcx, Const<'tcx>>
fn binders<T>(
&mut self,
a: Binder<'tcx, T>,
b: Binder<'tcx, T>
) -> RelateResult<'tcx, Binder<'tcx, T>>where
T: Relate<'tcx>,
fn with_cause<F, R>(&mut self, _cause: Cause, f: F) -> Rwhere
F: FnOnce(&mut Self) -> R,
Auto Trait Implementations
impl<'combine, 'infcx, 'tcx> !RefUnwindSafe for Equate<'combine, 'infcx, 'tcx>
impl<'combine, 'infcx, 'tcx> !Send for Equate<'combine, 'infcx, 'tcx>
impl<'combine, 'infcx, 'tcx> !Sync for Equate<'combine, 'infcx, 'tcx>
impl<'combine, 'infcx, 'tcx> Unpin for Equate<'combine, 'infcx, 'tcx>where
'infcx: 'combine,
'tcx: 'combine,
impl<'combine, 'infcx, 'tcx> !UnwindSafe for Equate<'combine, 'infcx, 'tcx>
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
Mutably borrows from an owned value. Read more
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 16 bytes