pub struct TypeInstantiationDerivation {}
Expand description

A helper to derive the set of instantiations for type parameters

Implementations

Find the set of valid instantiation combinations for all the type parameters.

The algorithm is progressive. For a list of parameters with arity params_arity = N, it

  • first finds all possible instantiation for parameter at index 0 (inst_param_0) and,’
  • for each instantiation in inst_param_0,
    • refines LHS or RHS types and
    • finds all possible instantiations for parameter at index 1 (inst_param_1)
    • for each instantiation in inst_param_1,
      • refines LHS or RHS types and
      • finds all possible instantiations for parameter at index 2 (inst_param_2)
      • for each instantiation in inst_param_2,
        • …… The process continues until all type parameters are analyzed (i.e., reaching the type parameter at index N).

If refine_lhs is True, refine the lhs_types after each round; same for refine_rhs.

If target_lhs is True, find instantiations for the type parameters in the lhs_types, otherwise, target the rhs_types.

If mark_irrelevant_param_as_error is True, type parameters that do not have any valid instantiation will be marked as Type::Error. Otherwise, leave the type parameter as it is.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.