pub type ApiResult<T = ()> = Result<T, Problem>;
Result type alias matching prelude::ApiResult but parameterised on canonical Problem.
prelude::ApiResult
Problem
pub enum ApiResult<T = ()> { Ok(T), Err(Problem), }
Contains the success value
Contains the error value