Enum chalk_ir::WhereClause[][src]

pub enum WhereClause<I: Interner> {
    Implemented(TraitRef<I>),
    AliasEq(AliasEq<I>),
    LifetimeOutlives(LifetimeOutlives<I>),
    TypeOutlives(TypeOutlives<I>),
}
Expand description

Where clauses that can be written by a Rust programmer.

Variants

Implemented(TraitRef<I>)

Type implements a trait.

Tuple Fields of Implemented

0: TraitRef<I>
AliasEq(AliasEq<I>)

Type is equal to an alias.

Tuple Fields of AliasEq

0: AliasEq<I>
LifetimeOutlives(LifetimeOutlives<I>)

One lifetime outlives another.

Tuple Fields of LifetimeOutlives

0: LifetimeOutlives<I>
TypeOutlives(TypeOutlives<I>)

Type outlives a lifetime.

Tuple Fields of TypeOutlives

0: TypeOutlives<I>

Implementations

Turn a where clause into the WF version of it i.e.:

  • Implemented(T: Trait) maps to WellFormed(T: Trait)
  • ProjectionEq(<T as Trait>::Item = Foo) maps to WellFormed(<T as Trait>::Item = Foo)
  • any other clause maps to itself

Same as into_well_formed_goal but with the FromEnv predicate instead of WellFormed.

If where clause is a TraitRef, returns its trait id.

Trait Implementations

Cast a value to type T.

Cast a value to type T.

Cast a value to type T.

Cast a value to type T.

Cast a value to type T.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The type of value that will be produced once folding is done. Typically this is Self, unless Self contains borrowed values, in which case owned values are produced (for example, one can fold over a &T value where T: Fold, in which case you get back a T, not a &T). Read more

Apply the given folder folder to self; binders is the number of binders that are in scope when beginning the folder. Typically binders starts as 0, but is adjusted when we encounter Binders<T> in the IR or other similar constructs. Read more

The interner associated with the type.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Recursively visits the type contents.

Apply the given visitor visitor to self; binders is the number of binders that are in scope when beginning the visitor. Typically binders starts as 0, but is adjusted when we encounter Binders<T> in the IR or other similar constructs. Read more

Uses the zipper to walk through two values, ensuring that they match.

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

Cast a value to type U using CastTo.

Cast a value to type T.

Cast a value to type T.

Cast a value to type T.

Checks whether self and other could possibly match.

Performs the conversion.

Performs the conversion.

Shifts this term in one level of binders.

Shifts a term valid at outer_binder so that it is valid at the innermost binder. See DebruijnIndex::shifted_in_from for a detailed explanation. Read more

Shifts a term valid at the innermost binder so that it is valid at outer_binder. See DebruijnIndex::shifted_out_to for a detailed explanation. Read more

Shifts this term out one level of binders.

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)

recently added

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.

Check whether there are free (non-bound) variables.