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