Enum kube_core::watch::WatchEvent [−][src]
pub enum WatchEvent<K> {
Added(K),
Modified(K),
Deleted(K),
Bookmark(Bookmark),
Error(ErrorResponse),
}Expand description
A raw event returned from a watch query
Note that a watch query returns many of these as newline separated JSON.
Variants
Resource was added
Resource was modified
Resource was deleted
Bookmark(Bookmark)Resource bookmark. Bookmark is a slimmed down K due to #285.
From Watch bookmarks.
NB: This became Beta first in Kubernetes 1.16.
Error(ErrorResponse)There was some kind of error
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl<K> RefUnwindSafe for WatchEvent<K> where
K: RefUnwindSafe, impl<K> Send for WatchEvent<K> where
K: Send, impl<K> Sync for WatchEvent<K> where
K: Sync, impl<K> Unpin for WatchEvent<K> where
K: Unpin, impl<K> UnwindSafe for WatchEvent<K> where
K: UnwindSafe, Blanket Implementations
Mutably borrows from an owned value. Read more