Enum miri::shims::x86::FloatBinOp
source · enum FloatBinOp {
Arith(BinOp),
Cmp(FloatCmpOp),
Min,
Max,
}
Variants§
Arith(BinOp)
Arithmetic operation
Cmp(FloatCmpOp)
Comparison
Min
Minimum value (with SSE semantics)
https://www.felixcloutier.com/x86/minss https://www.felixcloutier.com/x86/minps https://www.felixcloutier.com/x86/minsd https://www.felixcloutier.com/x86/minpd
Max
Trait Implementations§
source§impl Clone for FloatBinOp
impl Clone for FloatBinOp
source§fn clone(&self) -> FloatBinOp
fn clone(&self) -> FloatBinOp
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 moreimpl Copy for FloatBinOp
Auto Trait Implementations§
impl RefUnwindSafe for FloatBinOp
impl Send for FloatBinOp
impl Sync for FloatBinOp
impl Unpin for FloatBinOp
impl UnwindSafe for FloatBinOp
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
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 2 bytes
Size for each variant:
Arith
: 1 byteCmp
: 1 byteMin
: 0 bytesMax
: 0 bytes