pub enum RuntimeRegistryEvent {
Added {
entry: RuntimeRegistryEntry,
},
Updated {
entry: RuntimeRegistryEntry,
},
Removed {
id: String,
},
Error {
message: String,
},
}Expand description
Change emitted by RuntimeRegistryWatch.
Variants§
Added
New stable entry.
Fields
§
entry: RuntimeRegistryEntryComplete current descriptor.
Updated
Existing entry changed state, ownership, metadata, or capabilities.
Fields
§
entry: RuntimeRegistryEntryComplete replacement descriptor.
Removed
Entry disappeared after close or stale reconciliation.
Error
A polling iteration failed without terminating the watch.
Trait Implementations§
Source§impl Clone for RuntimeRegistryEvent
impl Clone for RuntimeRegistryEvent
Source§fn clone(&self) -> RuntimeRegistryEvent
fn clone(&self) -> RuntimeRegistryEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RuntimeRegistryEvent
impl Debug for RuntimeRegistryEvent
Source§impl<'de> Deserialize<'de> for RuntimeRegistryEvent
impl<'de> Deserialize<'de> for RuntimeRegistryEvent
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RuntimeRegistryEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RuntimeRegistryEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RuntimeRegistryEvent
Source§impl PartialEq for RuntimeRegistryEvent
impl PartialEq for RuntimeRegistryEvent
Source§impl Serialize for RuntimeRegistryEvent
impl Serialize for RuntimeRegistryEvent
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
impl StructuralPartialEq for RuntimeRegistryEvent
Auto Trait Implementations§
impl Freeze for RuntimeRegistryEvent
impl RefUnwindSafe for RuntimeRegistryEvent
impl Send for RuntimeRegistryEvent
impl Sync for RuntimeRegistryEvent
impl Unpin for RuntimeRegistryEvent
impl UnsafeUnpin for RuntimeRegistryEvent
impl UnwindSafe for RuntimeRegistryEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.