rustc_infer/infer/relate/mod.rs
1//! This module contains the definitions of most `TypeRelation`s in the type system
2//! (except for some relations used for diagnostics and heuristics in the compiler).
3//! As well as the implementation of `Relate` for interned things (`Ty`/`Const`/etc).
4
5pub use rustc_middle::ty::relate::combine::PredicateEmittingRelation;
6pub use rustc_middle::ty::relate::{RelateResult, *};
7
8mod generalize;
9mod higher_ranked;
10pub(super) mod lattice;
11pub(super) mod type_relating;