pub trait CoreHandler {
// Required methods
fn handle_notification(&mut self, rpc: CoreNotification);
fn handle_request(&mut self, id: RequestId, rpc: CoreRequest);
}
pub trait CoreHandler {
// Required methods
fn handle_notification(&mut self, rpc: CoreNotification);
fn handle_request(&mut self, id: RequestId, rpc: CoreRequest);
}