pub trait StalkerObserver {
    // Required methods
    fn notify_backpatch(&mut self, backpatch: *const GumBackpatch, size: gsize);
    fn switch_callback(
        &mut self,
        from_address: gpointer,
        start_address: gpointer,
        from_insn: gpointer,
        target: &mut gpointer
    );
}
Available on crate feature stalker-observer only.

Required Methods§

source

fn notify_backpatch(&mut self, backpatch: *const GumBackpatch, size: gsize)

source

fn switch_callback( &mut self, from_address: gpointer, start_address: gpointer, from_insn: gpointer, target: &mut gpointer )

Implementors§