pub trait Handler { // Required method fn handle(&self, req: Request<Body>) -> Result<LuminalFuture, Response>; }
Trait for handling a request, returning either a success Response or an error Response.
Response