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