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