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

Trait Implementations

impl Debug for Terminator
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for Terminator
[src]

impl PartialEq for Terminator
[src]

[src]

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

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for Terminator

impl Sync for Terminator