Enum llvm_sys::LLVMIntPredicate
source · #[repr(C)]pub enum LLVMIntPredicate {
LLVMIntEQ = 32,
LLVMIntNE = 33,
LLVMIntUGT = 34,
LLVMIntUGE = 35,
LLVMIntULT = 36,
LLVMIntULE = 37,
LLVMIntSGT = 38,
LLVMIntSGE = 39,
LLVMIntSLT = 40,
LLVMIntSLE = 41,
}
Variants§
LLVMIntEQ = 32
LLVMIntNE = 33
LLVMIntUGT = 34
LLVMIntUGE = 35
LLVMIntULT = 36
LLVMIntULE = 37
LLVMIntSGT = 38
LLVMIntSGE = 39
LLVMIntSLT = 40
LLVMIntSLE = 41
Trait Implementations§
source§impl Clone for LLVMIntPredicate
impl Clone for LLVMIntPredicate
source§fn clone(&self) -> LLVMIntPredicate
fn clone(&self) -> LLVMIntPredicate
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for LLVMIntPredicate
impl Debug for LLVMIntPredicate
source§impl PartialEq for LLVMIntPredicate
impl PartialEq for LLVMIntPredicate
source§fn eq(&self, other: &LLVMIntPredicate) -> bool
fn eq(&self, other: &LLVMIntPredicate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for LLVMIntPredicate
impl StructuralPartialEq for LLVMIntPredicate
Auto Trait Implementations§
impl Freeze for LLVMIntPredicate
impl RefUnwindSafe for LLVMIntPredicate
impl Send for LLVMIntPredicate
impl Sync for LLVMIntPredicate
impl Unpin for LLVMIntPredicate
impl UnwindSafe for LLVMIntPredicate
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more