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