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