pub enum PersistenceKeyed<K, V> {
Persist(K, V),
Delete(K),
}Expand description
Persist or delete key-value pairs
Variants§
Trait Implementations§
Source§impl<K: Clone, V: Clone> Clone for PersistenceKeyed<K, V>
impl<K: Clone, V: Clone> Clone for PersistenceKeyed<K, V>
Source§fn clone(&self) -> PersistenceKeyed<K, V>
fn clone(&self) -> PersistenceKeyed<K, V>
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 moreimpl<K: Eq, V: Eq> Eq for PersistenceKeyed<K, V>
Source§impl<K: PartialEq, V: PartialEq> PartialEq for PersistenceKeyed<K, V>
impl<K: PartialEq, V: PartialEq> PartialEq for PersistenceKeyed<K, V>
Source§fn eq(&self, other: &PersistenceKeyed<K, V>) -> bool
fn eq(&self, other: &PersistenceKeyed<K, V>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<K: PartialEq, V: PartialEq> StructuralPartialEq for PersistenceKeyed<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for PersistenceKeyed<K, V>
impl<K, V> RefUnwindSafe for PersistenceKeyed<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for PersistenceKeyed<K, V>
impl<K, V> Sync for PersistenceKeyed<K, V>
impl<K, V> Unpin for PersistenceKeyed<K, V>
impl<K, V> UnsafeUnpin for PersistenceKeyed<K, V>where
K: UnsafeUnpin,
V: UnsafeUnpin,
impl<K, V> UnwindSafe for PersistenceKeyed<K, V>where
K: UnwindSafe,
V: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> ToSinkBuild for T
impl<T> ToSinkBuild for T
§fn iter_to_sink_build(self) -> SendIterBuild<Self>
fn iter_to_sink_build(self) -> SendIterBuild<Self>
§fn stream_to_sink_build(self) -> SendStreamBuild<Self>where
Self: Sized + Stream,
fn stream_to_sink_build(self) -> SendStreamBuild<Self>where
Self: Sized + Stream,
Starts a [
SinkBuild] adaptor chain to send all items from self as a [Stream].