Enum k8s_openapi::ListResponse
source · pub enum ListResponse<T>where
T: DeserializeOwned + ListableResource,{
Ok(List<T>),
Other(Result<Option<Value>, Error>),
}
Expand description
The common response type for all list API operations.
Variants§
Trait Implementations§
source§impl<T> Debug for ListResponse<T>where
T: DeserializeOwned + ListableResource + Debug,
impl<T> Debug for ListResponse<T>where T: DeserializeOwned + ListableResource + Debug,
source§impl<T> Response for ListResponse<T>where
T: DeserializeOwned + ListableResource,
impl<T> Response for ListResponse<T>where T: DeserializeOwned + ListableResource,
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. Read more