pub trait Handle<Cx, Req>where Req: Request,{ // Required method async fn handle( self, req: Req, cx: Cx ) -> Result<Req::Response, Error<impl Scope>>; }