pub trait Handler { // Required method fn on_message(&self, msg: &[u8]) -> Result<()>; }
Handler for incoming messages via ServiceWorker