Struct llvm_ir::instruction::FastMathFlags[][src]

pub struct FastMathFlags {
    pub allow_reassoc: bool,
    pub no_NaNs: bool,
    pub no_Infs: bool,
    pub no_signed_zeros: bool,
    pub allow_reciprocal: bool,
    pub allow_contract: bool,
    pub approx_func: bool,
}

See LLVM 12 docs on Fast-Math Flags

Fields

allow_reassoc: boolno_NaNs: boolno_Infs: boolno_signed_zeros: boolallow_reciprocal: boolallow_contract: boolapprox_func: bool

Trait Implementations

impl Clone for FastMathFlags[src]

impl Debug for FastMathFlags[src]

impl Eq for FastMathFlags[src]

impl PartialEq<FastMathFlags> for FastMathFlags[src]

impl StructuralEq for FastMathFlags[src]

impl StructuralPartialEq for FastMathFlags[src]

Auto Trait Implementations

impl RefUnwindSafe for FastMathFlags[src]

impl Send for FastMathFlags[src]

impl Sync for FastMathFlags[src]

impl Unpin for FastMathFlags[src]

impl UnwindSafe for FastMathFlags[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.