useresponse::{Response, Responder};usehttp::Status;/// A failing response; simply forwards to the catcher for the given
/// `Status`.
#[derive(Debug)]pubstructFailure(pub Status);impl<'r>Responder<'r>forFailure{fnrespond(self)->Result<Response<'r>, Status>{Err(self.0)}}