pub type ApiResponse = Result<ApiResponsePayload, ApiError>;Expand description
Specialized version of std::result::Result for value returned by backend services.
Aliased Type§
pub enum ApiResponse {
Ok(ApiResponsePayload),
Err(ApiError),
}