pub enum GetCoreAPIVersionsResponse {
Ok(APIVersions),
Unauthorized,
Other,
}
Expand description
Parses the HTTP response of get_core_api_versions
Variants§
Ok(APIVersions)
Other
Trait Implementations§
source§impl Debug for GetCoreAPIVersionsResponse
impl Debug for GetCoreAPIVersionsResponse
source§impl Response for GetCoreAPIVersionsResponse
impl Response for GetCoreAPIVersionsResponse
source§fn try_from_parts(
status_code: StatusCode,
buf: &[u8]
) -> Result<(Self, usize), ResponseError>
fn try_from_parts(
status_code: StatusCode,
buf: &[u8]
) -> Result<(Self, usize), ResponseError>
Tries to parse the response from the given status code and response body.