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