Enum cranelift_isle::ast::ArgPolarity [−][src]
pub enum ArgPolarity {
Input,
Output,
}
Expand description
Whether an argument is an input or an output.
Variants
Input
An arg that must be given an Expr in the pattern and passes data to the extractor op.
Output
An arg that must be given a regular pattern (not Expr) and receives data from the extractor op.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ArgPolarity
impl Send for ArgPolarity
impl Sync for ArgPolarity
impl Unpin for ArgPolarity
impl UnwindSafe for ArgPolarity
Blanket Implementations
Mutably borrows from an owned value. Read more