pub type APIResult<O, E> = Result<O, Error<E>>;
The result type returned by API calls.
pub enum APIResult<O, E> { Ok(O), Err(Error<E>), }
Contains the success value
Contains the error value