[][src]Enum llvm_ir::types::FPType

pub enum FPType {
    Half,
    Single,
    Double,
    FP128,
    X86_FP80,
    PPC_FP128,
}

Variants

Half
Single
Double
FP128
X86_FP80
PPC_FP128

Trait Implementations

impl Clone for FPType[src]

impl Copy for FPType[src]

impl Debug for FPType[src]

impl Eq for FPType[src]

impl From<FPType> for Type[src]

impl Hash for FPType[src]

impl PartialEq<FPType> for FPType[src]

impl StructuralEq for FPType[src]

impl StructuralPartialEq for FPType[src]

impl Typed for FPType[src]

Auto Trait Implementations

impl RefUnwindSafe for FPType

impl Send for FPType

impl Sync for FPType

impl Unpin for FPType

impl UnwindSafe for FPType

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.