Enum k8s_openapi::WatchResponse
source · [−]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>)
Other(Result<Option<Value>, Error>)
Trait Implementations
sourceimpl<T: Debug> Debug for WatchResponse<T>where
T: DeserializeOwned,
impl<T: Debug> Debug for WatchResponse<T>where
T: DeserializeOwned,
sourceimpl<T> Response for WatchResponse<T>where
T: DeserializeOwned,
impl<T> Response for WatchResponse<T>where
T: DeserializeOwned,
sourcefn 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
Auto Trait Implementations
impl<T> RefUnwindSafe for WatchResponse<T>where
T: RefUnwindSafe,
impl<T> Send for WatchResponse<T>where
T: Send,
impl<T> Sync for WatchResponse<T>where
T: Sync,
impl<T> Unpin for WatchResponse<T>where
T: Unpin,
impl<T> UnwindSafe for WatchResponse<T>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more