Trait frida_gum::interceptor::InvocationListener[][src]

pub trait InvocationListener {
    fn on_enter(&mut self, context: InvocationContext<'_>);
fn on_leave(&mut self, context: InvocationContext<'_>); }

Represents a pair of listeners attached to a function.

Required methods

fn on_enter(&mut self, context: InvocationContext<'_>)[src]

Called when the attached function is entered.

fn on_leave(&mut self, context: InvocationContext<'_>)[src]

Called before the attached function is exited.

Loading content...

Implementors

Loading content...