pub trait Router {
    fn boot(&self);
    fn handle(&self, request_builder: &mut RequestBuilder) -> Response;
}

Required methods

Implementors