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