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