Enum cranelift_codegen::ir::instructions::ResolvedConstraint[][src]

pub enum ResolvedConstraint {
    Bound(Type),
    Free(ValueTypeSet),
}

The type constraint on a value argument once the controlling type variable is known.

Variants

The operand is bound to a known type.

The operand type can vary freely within the given set.

Trait Implementations

impl Copy for ResolvedConstraint
[src]

impl Clone for ResolvedConstraint
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ResolvedConstraint
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ResolvedConstraint
[src]

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

This method tests for !=.

impl Eq for ResolvedConstraint
[src]

Auto Trait Implementations