pub struct AWMapDelta<K: Ord + Clone, V: Clone + Eq> { /* private fields */ }Expand description
Delta for AWMap: new tags and tombstones since another state.
Trait Implementations§
Source§impl<K: Clone + Ord + Clone, V: Clone + Clone + Eq> Clone for AWMapDelta<K, V>
impl<K: Clone + Ord + Clone, V: Clone + Clone + Eq> Clone for AWMapDelta<K, V>
Source§fn clone(&self) -> AWMapDelta<K, V>
fn clone(&self) -> AWMapDelta<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 + Ord + Clone, V: Eq + Clone + Eq> Eq for AWMapDelta<K, V>
Source§impl<K: PartialEq + Ord + Clone, V: PartialEq + Clone + Eq> PartialEq for AWMapDelta<K, V>
impl<K: PartialEq + Ord + Clone, V: PartialEq + Clone + Eq> PartialEq for AWMapDelta<K, V>
Source§fn eq(&self, other: &AWMapDelta<K, V>) -> bool
fn eq(&self, other: &AWMapDelta<K, V>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<K: PartialEq + Ord + Clone, V: PartialEq + Clone + Eq> StructuralPartialEq for AWMapDelta<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for AWMapDelta<K, V>
impl<K, V> RefUnwindSafe for AWMapDelta<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for AWMapDelta<K, V>
impl<K, V> Sync for AWMapDelta<K, V>
impl<K, V> Unpin for AWMapDelta<K, V>
impl<K, V> UnsafeUnpin for AWMapDelta<K, V>
impl<K, V> UnwindSafe for AWMapDelta<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