pub type Result<T = Response<Body>> = Result<T, Error>;
A specialized Result type for Envoy.
pub enum Result<T = Response<Body>> { Ok(T), Err(Error), }
Contains the success value
Contains the error value