(
&self,
ctx: StoreContextMut<'_, State>,
ch: CallHook,
)
| 551 | #[async_trait::async_trait] |
| 552 | impl CallHookHandler<State> for HandlerR { |
| 553 | async fn handle_call_event( |
| 554 | &self, |
| 555 | ctx: StoreContextMut<'_, State>, |
| 556 | ch: CallHook, |
| 557 | ) -> Result<()> { |
| 558 | sync_call_hook(ctx, ch) |
| 559 | } |
| 560 | } |
| 561 | let engine = Engine::default(); |
| 562 | let mut store = Store::new(&engine, State::default()); |
no test coverage detected