pub trait Callback: JSTraceable + MallocSizeOf {
    // Required method
    fn callback(
        &self,
        cx: SafeJSContext,
        v: HandleValue<'_>,
        realm: InRealm<'_>
    );
}

Required Methods§

source

fn callback(&self, cx: SafeJSContext, v: HandleValue<'_>, realm: InRealm<'_>)

Implementors§