pub type AsyncResult<T = ()> = Result<T, AsyncError>;
Type alias for async results
enum AsyncResult<T = ()> { Ok(T), Err(Box<dyn Error + Send + Sync>), }
Contains the success value
Contains the error value