#[repr(C)]pub enum FastMathFlags {
None = 0,
ReAssoc = 1,
NNaN = 2,
NInf = 4,
NSz = 8,
ARcp = 16,
Contract = 32,
AFn = 64,
Fast = 127,
}
Variants§
Implementations§
Trait Implementations§
Source§impl BitAnd for FastMathFlags
impl BitAnd for FastMathFlags
Source§impl BitOr for FastMathFlags
impl BitOr for FastMathFlags
Source§impl Clone for FastMathFlags
impl Clone for FastMathFlags
Source§fn clone(&self) -> FastMathFlags
fn clone(&self) -> FastMathFlags
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 Display for FastMathFlags
impl Display for FastMathFlags
Source§impl From<FastMathFlags> for FastMathFlagsBitVector
impl From<FastMathFlags> for FastMathFlagsBitVector
Source§fn from(flags: FastMathFlags) -> Self
fn from(flags: FastMathFlags) -> Self
Converts to this type from the input type.
Source§impl From<i32> for FastMathFlags
impl From<i32> for FastMathFlags
Source§impl From<i64> for FastMathFlags
impl From<i64> for FastMathFlags
Source§impl PartialEq for FastMathFlags
impl PartialEq for FastMathFlags
impl Copy for FastMathFlags
impl StructuralPartialEq for FastMathFlags
Auto Trait Implementations§
impl Freeze for FastMathFlags
impl RefUnwindSafe for FastMathFlags
impl Send for FastMathFlags
impl Sync for FastMathFlags
impl Unpin for FastMathFlags
impl UnwindSafe for FastMathFlags
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