Module chalk_solve::infer::var
source · Structs§
- Wrapper around
chalk_ir::InferenceVarfor coherence purposes. An inference variable represents an unknown term – either a type or a lifetime. The variable itself is just an index into the unification table; the unification table maps it to anInferenceValue.
Enums§
- The value of an inference variable. We start out as
Unboundwith a universe index; when the inference variable is assigned a value, it becomes bound and records that value. SeeEnaVariablefor more details.