Enum llvm_sys::LLVMAtomicRMWBinOp
source · #[repr(C)]pub enum LLVMAtomicRMWBinOp {
Show 15 variants
LLVMAtomicRMWBinOpXchg = 0,
LLVMAtomicRMWBinOpAdd = 1,
LLVMAtomicRMWBinOpSub = 2,
LLVMAtomicRMWBinOpAnd = 3,
LLVMAtomicRMWBinOpNand = 4,
LLVMAtomicRMWBinOpOr = 5,
LLVMAtomicRMWBinOpXor = 6,
LLVMAtomicRMWBinOpMax = 7,
LLVMAtomicRMWBinOpMin = 8,
LLVMAtomicRMWBinOpUMax = 9,
LLVMAtomicRMWBinOpUMin = 10,
LLVMAtomicRMWBinOpFAdd = 11,
LLVMAtomicRMWBinOpFSub = 12,
LLVMAtomicRMWBinOpFMax = 13,
LLVMAtomicRMWBinOpFMin = 14,
}
Variants§
LLVMAtomicRMWBinOpXchg = 0
LLVMAtomicRMWBinOpAdd = 1
LLVMAtomicRMWBinOpSub = 2
LLVMAtomicRMWBinOpAnd = 3
LLVMAtomicRMWBinOpNand = 4
LLVMAtomicRMWBinOpOr = 5
LLVMAtomicRMWBinOpXor = 6
LLVMAtomicRMWBinOpMax = 7
LLVMAtomicRMWBinOpMin = 8
LLVMAtomicRMWBinOpUMax = 9
LLVMAtomicRMWBinOpUMin = 10
LLVMAtomicRMWBinOpFAdd = 11
LLVMAtomicRMWBinOpFSub = 12
LLVMAtomicRMWBinOpFMax = 13
LLVMAtomicRMWBinOpFMin = 14
Trait Implementations§
source§impl Clone for LLVMAtomicRMWBinOp
impl Clone for LLVMAtomicRMWBinOp
source§fn clone(&self) -> LLVMAtomicRMWBinOp
fn clone(&self) -> LLVMAtomicRMWBinOp
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 LLVMAtomicRMWBinOp
impl Debug for LLVMAtomicRMWBinOp
source§impl PartialEq for LLVMAtomicRMWBinOp
impl PartialEq for LLVMAtomicRMWBinOp
source§fn eq(&self, other: &LLVMAtomicRMWBinOp) -> bool
fn eq(&self, other: &LLVMAtomicRMWBinOp) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for LLVMAtomicRMWBinOp
impl StructuralPartialEq for LLVMAtomicRMWBinOp
Auto Trait Implementations§
impl RefUnwindSafe for LLVMAtomicRMWBinOp
impl Send for LLVMAtomicRMWBinOp
impl Sync for LLVMAtomicRMWBinOp
impl Unpin for LLVMAtomicRMWBinOp
impl UnwindSafe for LLVMAtomicRMWBinOp
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