pub struct LWWMapDelta<K: Ord + Clone, V: Clone> { /* private fields */ }Expand description
Delta for LWWMap: entries that are newer in the source.
Trait Implementations§
Source§impl<K: Clone + Ord + Clone, V: Clone + Clone> Clone for LWWMapDelta<K, V>
impl<K: Clone + Ord + Clone, V: Clone + Clone> Clone for LWWMapDelta<K, V>
Source§fn clone(&self) -> LWWMapDelta<K, V>
fn clone(&self) -> LWWMapDelta<K, V>
Returns a duplicate 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 moreimpl<K: Eq + Ord + Clone, V: Eq + Clone> Eq for LWWMapDelta<K, V>
impl<K: Ord + Clone, V: Clone> StructuralPartialEq for LWWMapDelta<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for LWWMapDelta<K, V>
impl<K, V> RefUnwindSafe for LWWMapDelta<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for LWWMapDelta<K, V>
impl<K, V> Sync for LWWMapDelta<K, V>
impl<K, V> Unpin for LWWMapDelta<K, V>
impl<K, V> UnsafeUnpin for LWWMapDelta<K, V>
impl<K, V> UnwindSafe for LWWMapDelta<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