Enum disassemble::EdgeType
[−]
[src]
pub enum EdgeType {
ConditionalTaken,
ConditionalFallthrough,
Unconditional,
}When is this edge taken? Conditionally or unconditionally?
Variants
ConditionalTakenThis edge is when a conditional is taken.
ConditionalFallthroughThis edge is when a conditional falls through to the next instruction.
UnconditionalThis is edge is always taken.
Trait Implementations
impl Clone for EdgeType[src]
fn clone(&self) -> EdgeType[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Copy for EdgeType[src]
impl Debug for EdgeType[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more