pub trait Handle<Req>where Req: Request,{ // Required method async fn handle( &self, req: Req ) -> Result<<Req as Request>::Response, Global>; }