#[repr(u32)]pub enum x86_sse_cc {
X86_SSE_CC_INVALID = 0,
X86_SSE_CC_EQ = 1,
X86_SSE_CC_LT = 2,
X86_SSE_CC_LE = 3,
X86_SSE_CC_UNORD = 4,
X86_SSE_CC_NEQ = 5,
X86_SSE_CC_NLT = 6,
X86_SSE_CC_NLE = 7,
X86_SSE_CC_ORD = 8,
}
Expand description
SSE Code Condition type
Variants§
X86_SSE_CC_INVALID = 0
< Uninitialized.
X86_SSE_CC_EQ = 1
X86_SSE_CC_LT = 2
X86_SSE_CC_LE = 3
X86_SSE_CC_UNORD = 4
X86_SSE_CC_NEQ = 5
X86_SSE_CC_NLT = 6
X86_SSE_CC_NLE = 7
X86_SSE_CC_ORD = 8
Trait Implementations§
Source§impl Clone for x86_sse_cc
impl Clone for x86_sse_cc
Source§fn clone(&self) -> x86_sse_cc
fn clone(&self) -> x86_sse_cc
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 x86_sse_cc
impl Debug for x86_sse_cc
Source§impl Hash for x86_sse_cc
impl Hash for x86_sse_cc
Source§impl PartialEq for x86_sse_cc
impl PartialEq for x86_sse_cc
impl Copy for x86_sse_cc
impl Eq for x86_sse_cc
impl StructuralPartialEq for x86_sse_cc
Auto Trait Implementations§
impl Freeze for x86_sse_cc
impl RefUnwindSafe for x86_sse_cc
impl Send for x86_sse_cc
impl Sync for x86_sse_cc
impl Unpin for x86_sse_cc
impl UnwindSafe for x86_sse_cc
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