pub type Result<T> = Result<T, ApiError>;
A Result alias where the Err case is Error.
Result
Err
Error
pub enum Result<T> { Ok(T), Err(ApiError), }
Contains the success value
Contains the error value