Relate

Trait Relate 

pub trait Relate<I>:
    TypeFoldable<I>
    + PartialEq
    + Copy
where I: Interner,
{ // Required method fn relate<R>( relation: &mut R, a: Self, b: Self, ) -> Result<Self, TypeError<I>> where R: TypeRelation<I>; }

Required Methods§

fn relate<R>(relation: &mut R, a: Self, b: Self) -> Result<Self, TypeError<I>>
where R: TypeRelation<I>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

§

impl<'tcx> Relate<TyCtxt<'tcx>> for Expr<'tcx>

§

fn relate<R>( relation: &mut R, ae: Expr<'tcx>, be: Expr<'tcx>, ) -> Result<Expr<'tcx>, TypeError<TyCtxt<'tcx>>>
where R: TypeRelation<TyCtxt<'tcx>>,

§

impl<'tcx> Relate<TyCtxt<'tcx>> for Const<'tcx>

§

fn relate<R>( relation: &mut R, a: Const<'tcx>, b: Const<'tcx>, ) -> Result<Const<'tcx>, TypeError<TyCtxt<'tcx>>>
where R: TypeRelation<TyCtxt<'tcx>>,

§

impl<'tcx> Relate<TyCtxt<'tcx>> for GenericArg<'tcx>

§

fn relate<R>( relation: &mut R, a: GenericArg<'tcx>, b: GenericArg<'tcx>, ) -> Result<GenericArg<'tcx>, TypeError<TyCtxt<'tcx>>>
where R: TypeRelation<TyCtxt<'tcx>>,

§

impl<'tcx> Relate<TyCtxt<'tcx>> for Pattern<'tcx>

§

fn relate<R>( relation: &mut R, a: Pattern<'tcx>, b: Pattern<'tcx>, ) -> Result<Pattern<'tcx>, TypeError<TyCtxt<'tcx>>>
where R: TypeRelation<TyCtxt<'tcx>>,

§

impl<'tcx> Relate<TyCtxt<'tcx>> for Region<'tcx>

§

fn relate<R>( relation: &mut R, a: Region<'tcx>, b: Region<'tcx>, ) -> Result<Region<'tcx>, TypeError<TyCtxt<'tcx>>>
where R: TypeRelation<TyCtxt<'tcx>>,

§

impl<'tcx> Relate<TyCtxt<'tcx>> for Term<'tcx>

§

fn relate<R>( relation: &mut R, a: Term<'tcx>, b: Term<'tcx>, ) -> Result<Term<'tcx>, TypeError<TyCtxt<'tcx>>>
where R: TypeRelation<TyCtxt<'tcx>>,

§

impl<'tcx> Relate<TyCtxt<'tcx>> for Ty<'tcx>

§

fn relate<R>( relation: &mut R, a: Ty<'tcx>, b: Ty<'tcx>, ) -> Result<Ty<'tcx>, TypeError<TyCtxt<'tcx>>>
where R: TypeRelation<TyCtxt<'tcx>>,

Implementors§

§

impl<I> Relate<I> for AliasTerm<I>
where I: Interner,

§

impl<I> Relate<I> for AliasTy<I>
where I: Interner,

§

impl<I> Relate<I> for ExistentialProjection<I>
where I: Interner,

§

impl<I> Relate<I> for ExistentialTraitRef<I>
where I: Interner,

§

impl<I> Relate<I> for FnSig<I>
where I: Interner,

§

impl<I> Relate<I> for TraitPredicate<I>
where I: Interner,

§

impl<I> Relate<I> for TraitRef<I>
where I: Interner,

§

impl<I, T> Relate<I> for Binder<I, T>
where I: Interner, T: Relate<I>,