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