pub trait RequestHandler: Send + Sync + 'static { // Required method fn handle(&self, req: &mut HttpRequest) -> Result<()>; }
Handler the request
If some error ocurred while processing the request