pub trait RequestHandler<Req, Res> { // Required method fn handle(&self, req: Req); }
Handles the request Req. Implemented by the user.
Req