pub struct Substitution { /* private fields */ }
Expand description

A type substitution.

Implementations

Creates a new substitution.

Binds the type variables.

Specializes the type, substituting all variables bound in this substitution.

Return either a shallow or deep substitution of the type variable.

If deep substitution is requested, follow down the substitution chain until either

  • Some(ty) when the final type is not a type variable or
  • None when the final type variable does not have a substitution

Unify two types, returning the unified type.

This currently implements the following notion of type compatibility:

    1. References are dropped (i.e. &T and T are compatible)
    1. All integer types are compatible if co-variance is allowed.
    1. With the joint effect of 1) and 2), if (P, Q) is compatible under co-variance, (&P, Q), (P, &Q), and (&P, &Q) are all compatible under co-variance.
    1. If in two tuples (P1, P2, …, Pn) and (Q1, Q2, …, Qn), all (Pi, Qi) pairs are compatible under co-variance, then the two tuples are compatible under co-variance.

The substitution will be refined by variable assignments as needed to perform unification. If unification fails, the substitution will be in some intermediate state; to implement transactional unification, the substitution must be cloned before calling this.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

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 resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

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.