Enum disassemble::EdgeType [] [src]

pub enum EdgeType {
    ConditionalTaken,
    ConditionalFallthrough,
    Unconditional,
}

When is this edge taken? Conditionally or unconditionally?

Variants

ConditionalTaken

This edge is when a conditional is taken.

ConditionalFallthrough

This edge is when a conditional falls through to the next instruction.

Unconditional

This is edge is always taken.

Trait Implementations

Derived Implementations

impl PartialEq for EdgeType

fn eq(&self, __arg_0: &EdgeType) -> bool

1.0.0fn ne(&self, other: &Rhs) -> bool

impl Eq for EdgeType

impl Debug for EdgeType

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Copy for EdgeType

impl Clone for EdgeType

fn clone(&self) -> EdgeType

1.0.0fn clone_from(&mut self, source: &Self)