pub trait RequestHandler<Req, Res> {
    fn handle(&self, req: Req);
}
Expand description

Handles the request Req. Implemented by the user.

Required Methods

Implementors