Enum recursive_disassembler::Terminator [] [src]

pub enum Terminator {
    Jump(u64),
    IndJump(Vec<u64>),
    CondJump(u64),
    Call(u64),
    IndCall(Vec<u64>),
    Ret(Vec<u64>),
    Illegal,
}

Variants

Methods

impl Terminator
[src]

Trait Implementations

impl Debug for Terminator
[src]

Formats the value using the given formatter.

impl Eq for Terminator
[src]

impl PartialEq for Terminator
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.