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

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

Represents a pair of listeners attached to a function.

Required methods

Called when the attached function is entered.

Called before the attached function is exited.

Implementors