Enum k8s_openapi::WatchResponse [−][src]
pub enum WatchResponse<T> where
T: DeserializeOwned, {
Ok(WatchEvent<T>),
Other(Result<Option<Value>, Error>),
}
Expand description
The common response type for all watch API operations.
Variants
Ok(WatchEvent<T>)
Tuple Fields of Ok
0: WatchEvent<T>
Trait Implementations
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