pub type ProxyResult = Result<ProxyResponse>;
enum ProxyResult { Ok(Response<BoxBody<Bytes, Error>>), Err(Report), }
Contains the success value
Contains the error value