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