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