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)
Tuple Fields
0: Type
The operand is bound to a known type.
Free(ValueTypeSet)
Tuple Fields
0: ValueTypeSet
The operand type can vary freely within the given set.
Trait 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.