Enum remoc_obs::hash_map::HashMapEvent
source · [−]pub enum HashMapEvent<K, V> {
InitialComplete,
Set(K, V),
Remove(K),
Clear,
ShrinkToFit,
Done,
}
Expand description
A hash map change event.
Variants
InitialComplete
The incremental subscription has reached the value of the observed hash map at the time it was subscribed.
Set(K, V)
An item was inserted or modified.
Remove(K)
An item was removed.
Clear
All items were removed.
ShrinkToFit
Shrink capacity to fit.
Done
The hash map has reached its final state and no further events will occur.
Trait Implementations
sourceimpl<K: Clone, V: Clone> Clone for HashMapEvent<K, V>
impl<K: Clone, V: Clone> Clone for HashMapEvent<K, V>
sourcefn clone(&self) -> HashMapEvent<K, V>
fn clone(&self) -> HashMapEvent<K, V>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<K: Debug, V: Debug> Debug for HashMapEvent<K, V>
impl<K: Debug, V: Debug> Debug for HashMapEvent<K, V>
sourceimpl<'de, K, V> Deserialize<'de> for HashMapEvent<K, V> where
K: Deserialize<'de>,
V: Deserialize<'de>,
impl<'de, K, V> Deserialize<'de> for HashMapEvent<K, V> where
K: Deserialize<'de>,
V: Deserialize<'de>,
sourcefn 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
sourceimpl<K: PartialEq, V: PartialEq> PartialEq<HashMapEvent<K, V>> for HashMapEvent<K, V>
impl<K: PartialEq, V: PartialEq> PartialEq<HashMapEvent<K, V>> for HashMapEvent<K, V>
sourcefn eq(&self, other: &HashMapEvent<K, V>) -> bool
fn eq(&self, other: &HashMapEvent<K, V>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &HashMapEvent<K, V>) -> bool
fn ne(&self, other: &HashMapEvent<K, V>) -> bool
This method tests for !=
.
sourceimpl<K, V> Serialize for HashMapEvent<K, V> where
K: Serialize,
V: Serialize,
impl<K, V> Serialize for HashMapEvent<K, V> where
K: Serialize,
V: Serialize,
impl<K: Eq, V: Eq> Eq for HashMapEvent<K, V>
impl<K, V> StructuralEq for HashMapEvent<K, V>
impl<K, V> StructuralPartialEq for HashMapEvent<K, V>
Auto Trait Implementations
impl<K, V> RefUnwindSafe for HashMapEvent<K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for HashMapEvent<K, V> where
K: Send,
V: Send,
impl<K, V> Sync for HashMapEvent<K, V> where
K: Sync,
V: Sync,
impl<K, V> Unpin for HashMapEvent<K, V> where
K: Unpin,
V: Unpin,
impl<K, V> UnwindSafe for HashMapEvent<K, V> where
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more