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