pub type AzureResult<T> = Result<T, Error>;
A convenience alias for Result where the error type is hard coded to Error
Result
Error
enum AzureResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value