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