[][src]Struct llvm_ir::terminator::CondBr

pub struct CondBr {
    pub condition: Operand,
    pub true_dest: Name,
    pub false_dest: Name,
    pub debugloc: Option<DebugLoc>,
}

See LLVM 10 docs on the 'br' instruction. The LLVM 'br' instruction has both conditional and unconditional variants, which we separate -- this is the conditional variant, while the unconditional variant is Br.

Fields

condition: Operand

The branch condition.

true_dest: Name

The Name of the BasicBlock destination if the condition is true.

false_dest: Name

The Name of the BasicBlock destination if the condition is false.

debugloc: Option<DebugLoc>

Trait Implementations

impl Clone for CondBr[src]

impl Debug for CondBr[src]

impl From<CondBr> for Terminator[src]

impl HasDebugLoc for CondBr[src]

impl PartialEq<CondBr> for CondBr[src]

impl StructuralPartialEq for CondBr[src]

impl TryFrom<Terminator> for CondBr[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl Typed for CondBr[src]

Auto Trait Implementations

impl RefUnwindSafe for CondBr

impl Send for CondBr

impl Sync for CondBr

impl Unpin for CondBr

impl UnwindSafe for CondBr

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.