Enum rustc_llvm::IntPredicate [] [src]

pub enum IntPredicate {
    IntEQ,
    IntNE,
    IntUGT,
    IntUGE,
    IntULT,
    IntULE,
    IntSGT,
    IntSGE,
    IntSLT,
    IntSLE,
}
Unstable (rustc_private)

Variants

IntEQ
Unstable (rustc_private)
IntNE
Unstable (rustc_private)
IntUGT
Unstable (rustc_private)
IntUGE
Unstable (rustc_private)
IntULT
Unstable (rustc_private)
IntULE
Unstable (rustc_private)
IntSGT
Unstable (rustc_private)
IntSGE
Unstable (rustc_private)
IntSLT
Unstable (rustc_private)
IntSLE
Unstable (rustc_private)

Trait Implementations

Derived Implementations

impl Clone for IntPredicate
[src]

fn clone(&self) -> IntPredicate

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for IntPredicate
[src]