Trait yaxpeax_core::debug::DebugTarget[][src]

pub trait DebugTarget<'a, Target> {
    type WatchTarget;
    type BreakCondition;
    fn attach(_: &'a mut Target) -> Self;
fn single_step(&mut self) -> Result<(), String>;
fn run(&mut self) -> RunResult;
fn add_watch(&mut self, _: Self::WatchTarget) -> Result<(), String>;
fn add_break_condition(
        &mut self,
        _: Self::BreakCondition
    ) -> Result<(), String>; }

Associated Types

Required methods

Implementors