Enum k8s_openapi_ext::metav1::WatchEvent
source · pub enum WatchEvent<T> {
Added(T),
Deleted(T),
Modified(T),
Bookmark {
resource_version: String,
},
ErrorStatus(Status),
ErrorOther(RawExtension),
}Expand description
Event represents a single event to a watched resource.
Object is:
- If Type is Added or Modified: the new state of the object.
- If Type is Deleted: the state of the object immediately before deletion.
- If Type is Error: *Status is recommended; other types may make sense depending on context.
Variants§
Trait Implementations§
source§impl<T> Clone for WatchEvent<T>where
T: Clone,
impl<T> Clone for WatchEvent<T>where T: Clone,
source§fn clone(&self) -> WatchEvent<T>
fn clone(&self) -> WatchEvent<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<T> Debug for WatchEvent<T>where
T: Debug,
impl<T> Debug for WatchEvent<T>where T: Debug,
source§impl<'de, T> Deserialize<'de> for WatchEvent<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for WatchEvent<T>where T: Deserialize<'de>,
source§fn deserialize<D>(
deserializer: D
) -> Result<WatchEvent<T>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>( deserializer: D ) -> Result<WatchEvent<T>, <D as Deserializer<'de>>::Error>where D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<T> PartialEq<WatchEvent<T>> for WatchEvent<T>where
T: PartialEq<T>,
impl<T> PartialEq<WatchEvent<T>> for WatchEvent<T>where T: PartialEq<T>,
source§fn eq(&self, other: &WatchEvent<T>) -> bool
fn eq(&self, other: &WatchEvent<T>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<T> Serialize for WatchEvent<T>where
T: Serialize,
impl<T> Serialize for WatchEvent<T>where T: Serialize,
source§fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where S: Serializer,
Serialize this value into the given Serde serializer. Read more