Struct rustc_infer::infer::glb::Glb

source ·
pub struct Glb<'combine, 'infcx, 'tcx> {
    fields: &'combine mut CombineFields<'infcx, 'tcx>,
    a_is_expected: bool,
}
Expand description

“Greatest lower bound” (common subtype)

Fields§

§fields: &'combine mut CombineFields<'infcx, 'tcx>§a_is_expected: bool

Implementations§

source§

impl<'combine, 'infcx, 'tcx> Glb<'combine, 'infcx, 'tcx>

source

pub fn new( fields: &'combine mut CombineFields<'infcx, 'tcx>, a_is_expected: bool ) -> Glb<'combine, 'infcx, 'tcx>

Trait Implementations§

source§

impl<'combine, 'infcx, 'tcx> LatticeDir<'infcx, 'tcx> for Glb<'combine, 'infcx, 'tcx>

source§

fn infcx(&self) -> &'infcx InferCtxt<'tcx>

source§

fn cause(&self) -> &ObligationCause<'tcx>

source§

fn relate_bound( &mut self, v: Ty<'tcx>, a: Ty<'tcx>, b: Ty<'tcx> ) -> RelateResult<'tcx, ()>

source§

fn define_opaque_types(&self) -> DefineOpaqueTypes

source§

impl<'tcx> ObligationEmittingRelation<'tcx> for Glb<'_, '_, 'tcx>

source§

fn register_predicates( &mut self, obligations: impl IntoIterator<Item: ToPredicate<'tcx>> )

Register predicates that must hold in order for this relation to hold. Uses a default obligation cause, ObligationEmittingRelation::register_obligations should be used if control over the obligation causes is required.
source§

fn register_obligations(&mut self, obligations: PredicateObligations<'tcx>)

Register obligations that must hold in order for this relation to hold
source§

fn alias_relate_direction(&self) -> AliasRelationDirection

Relation direction emitted for AliasRelate predicates, corresponding to the direction of the relation.
source§

fn register_type_relate_obligation(&mut self, a: Ty<'tcx>, b: Ty<'tcx>)

Register an obligation that both types must be related to each other according to the ty::AliasRelationDirection given by ObligationEmittingRelation::alias_relate_direction
source§

impl<'tcx> TypeRelation<'tcx> for Glb<'_, '_, 'tcx>

source§

fn tag(&self) -> &'static str

Returns a static string we can use for printouts.
source§

fn tcx(&self) -> TyCtxt<'tcx>

source§

fn param_env(&self) -> ParamEnv<'tcx>

source§

fn a_is_expected(&self) -> bool

Returns true if the value a is the “expected” type in the relation. Just affects error messages.
source§

fn relate_with_variance<T: Relate<'tcx>>( &mut self, variance: Variance, _info: VarianceDiagInfo<'tcx>, a: T, b: T ) -> RelateResult<'tcx, T>

Switch variance for the purpose of relating a and b.
source§

fn tys(&mut self, a: Ty<'tcx>, b: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>>

source§

fn regions( &mut self, a: Region<'tcx>, b: Region<'tcx> ) -> RelateResult<'tcx, Region<'tcx>>

source§

fn consts( &mut self, a: Const<'tcx>, b: Const<'tcx> ) -> RelateResult<'tcx, Const<'tcx>>

source§

fn binders<T>( &mut self, a: Binder<'tcx, T>, b: Binder<'tcx, T> ) -> RelateResult<'tcx, Binder<'tcx, T>>where T: Relate<'tcx>,

source§

fn with_cause<F, R>(&mut self, _cause: Cause, f: F) -> Rwhere F: FnOnce(&mut Self) -> R,

source§

fn relate<T>(&mut self, a: T, b: T) -> Result<T, TypeError<'tcx>>where T: Relate<'tcx>,

Generic relation routine suitable for most anything.
source§

fn relate_item_args( &mut self, item_def_id: DefId, a_arg: &'tcx List<GenericArg<'tcx>>, b_arg: &'tcx List<GenericArg<'tcx>> ) -> Result<&'tcx List<GenericArg<'tcx>>, TypeError<'tcx>>

Relate the two args for the given item. The default is to look up the variance for the item and proceed accordingly.

Auto Trait Implementations§

§

impl<'combine, 'infcx, 'tcx> !RefUnwindSafe for Glb<'combine, 'infcx, 'tcx>

§

impl<'combine, 'infcx, 'tcx> !Send for Glb<'combine, 'infcx, 'tcx>

§

impl<'combine, 'infcx, 'tcx> !Sync for Glb<'combine, 'infcx, 'tcx>

§

impl<'combine, 'infcx, 'tcx> Unpin for Glb<'combine, 'infcx, 'tcx>

§

impl<'combine, 'infcx, 'tcx> !UnwindSafe for Glb<'combine, 'infcx, 'tcx>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere 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.

source§

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

§

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 Twhere U: TryFrom<T>,

§

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.

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