pub type EnvResult<T> = Result<T, EnvError>;
pub enum EnvResult<T> { Ok(T), Err(EnvError), }
Contains the success value
Contains the error value