#[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 duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const 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
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