Enum cranelift_codegen::ir::instructions::ResolvedConstraint [−][src]
pub enum ResolvedConstraint {
Bound(Type),
Free(ValueTypeSet),
}Expand description
The type constraint on a value argument once the controlling type variable is known.
Variants
Bound(Type)The operand is bound to a known type.
Tuple Fields of Bound
0: TypeFree(ValueTypeSet)The operand type can vary freely within the given set.
Tuple Fields of Free
0: ValueTypeSetTrait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ResolvedConstraint
impl Send for ResolvedConstraint
impl Sync for ResolvedConstraint
impl Unpin for ResolvedConstraint
impl UnwindSafe for ResolvedConstraint
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.