pub type HaProxRes<R> = Result<R, HaProxErr>;
pub enum HaProxRes<R> { Ok(R), Err(HaProxErr), }
Contains the success value
Contains the error value