pub type EnvResult = Result<Box<dyn Environment>, &'static str>;
Aliased Type§
pub enum EnvResult {
Ok(Box<dyn Environment>),
Err(&'static str),
}
Variants§
Ok(Box<dyn Environment>)
Contains the success value
Err(&'static str)
Contains the error value