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
Jump(u64)IndJump(Vec<u64>)CondJump(u64)Call(u64)IndCall(Vec<u64>)Ret(Vec<u64>)Illegal
Trait Implementations
impl Debug for Terminator[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Eq for Terminator[src]
impl PartialEq for Terminator[src]
fn eq(&self, __arg_0: &Terminator) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Terminator) -> bool[src]
This method tests for !=.