Struct identity_diff::DiffHashMap
source · [−]👎 Deprecated since 0.5.0:
diff chain features are slated for removal
Expand description
A DiffHashMap
type which represents a Diffed HashMap
.
By default this value is transparent to serde
.
Tuple Fields
0: Option<Vec<InnerValue<K, V>>>
👎 Deprecated since 0.5.0:
diff chain features are slated for removal
Trait Implementations
sourceimpl<K: Clone + Diff, V: Clone + Diff> Clone for DiffHashMap<K, V>
impl<K: Clone + Diff, V: Clone + Diff> Clone for DiffHashMap<K, V>
sourcefn clone(&self) -> DiffHashMap<K, V>
fn clone(&self) -> DiffHashMap<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, V> Debug for DiffHashMap<K, V> where
K: Debug + Diff,
V: Debug + Diff,
impl<K, V> Debug for DiffHashMap<K, V> where
K: Debug + Diff,
V: Debug + Diff,
Debug implementation for the DiffHashMap<K, V>
type.
sourceimpl<K, V> Default for DiffHashMap<K, V> where
K: Diff,
V: Diff,
impl<K, V> Default for DiffHashMap<K, V> where
K: Diff,
V: Diff,
Default implementation for the DiffHashMap<K, V>
type.
sourceimpl<'de, K: Diff, V: Diff> Deserialize<'de> for DiffHashMap<K, V> where
K: Deserialize<'de>,
V: Deserialize<'de>,
impl<'de, K: Diff, V: Diff> Deserialize<'de> for DiffHashMap<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 + Diff, V: PartialEq + Diff> PartialEq<DiffHashMap<K, V>> for DiffHashMap<K, V>
impl<K: PartialEq + Diff, V: PartialEq + Diff> PartialEq<DiffHashMap<K, V>> for DiffHashMap<K, V>
sourcefn eq(&self, other: &DiffHashMap<K, V>) -> bool
fn eq(&self, other: &DiffHashMap<K, V>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DiffHashMap<K, V>) -> bool
fn ne(&self, other: &DiffHashMap<K, V>) -> bool
This method tests for !=
.
impl<K: Diff, V: Diff> StructuralPartialEq for DiffHashMap<K, V>
Auto Trait Implementations
impl<K, V> RefUnwindSafe for DiffHashMap<K, V> where
K: RefUnwindSafe,
<V as Diff>::Type: RefUnwindSafe,
impl<K, V> Send for DiffHashMap<K, V> where
K: Send,
<V as Diff>::Type: Send,
impl<K, V> Sync for DiffHashMap<K, V> where
K: Sync,
<V as Diff>::Type: Sync,
impl<K, V> Unpin for DiffHashMap<K, V> where
K: Unpin,
<V as Diff>::Type: Unpin,
impl<K, V> UnwindSafe for DiffHashMap<K, V> where
K: UnwindSafe,
<V as Diff>::Type: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more