[][src]Struct llvm_ir::constant::Select

pub struct Select {
    pub condition: ConstantRef,
    pub true_value: ConstantRef,
    pub false_value: ConstantRef,
}

Fields

condition: ConstantReftrue_value: ConstantReffalse_value: ConstantRef

Trait Implementations

impl Clone for Select[src]

impl Debug for Select[src]

impl From<Select> for Constant[src]

impl PartialEq<Select> for Select[src]

impl StructuralPartialEq for Select[src]

impl TryFrom<Constant> for Select[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl Typed for Select[src]

Auto Trait Implementations

impl RefUnwindSafe for Select

impl Send for Select

impl Sync for Select

impl Unpin for Select

impl UnwindSafe for Select

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.