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

Handles a request from the mediator.

Required Methods

Handle a request and returns the response.

Implementors