[][src]Struct dustbox::debug::Debugger

pub struct Debugger {
    pub machine: Machine,
    pub prev_regs: RegisterState,
    // some fields omitted
}

Fields

machine: Machineprev_regs: RegisterState

Methods

impl Debugger[src]

pub fn default() -> Self[src]

pub fn is_ip_at_breakpoint(&self) -> bool[src]

pub fn step_into(&mut self, cnt: usize)[src]

pub fn step_over(&mut self)[src]

pub fn disasm_n_instructions_to_text(&mut self, n: usize) -> String[src]

pub fn dump_memory(
    &self,
    filename: &str,
    base: u32,
    len: u32
) -> Result<usize, IoError>
[src]

pub fn exec_command(&mut self, cmd: &str)[src]

pub fn load_executable(&mut self, name: &str)[src]

loads a .com or .exe file

Auto Trait Implementations

impl Send for Debugger

impl Sync for Debugger

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.