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