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