pub struct HashMapValueTree<K, V>(/* private fields */)
where
K: ValueTree,
V: ValueTree,
K::Value: Hash + Eq;
Available on crate feature
std
only.Expand description
ValueTree
corresponding to HashMapStrategy
.
Trait Implementations§
Source§impl<K, V> Clone for HashMapValueTree<K, V>
impl<K, V> Clone for HashMapValueTree<K, V>
Source§fn clone(&self) -> HashMapValueTree<K, V>
fn clone(&self) -> HashMapValueTree<K, V>
Returns a copy 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 moreSource§impl<K, V> Debug for HashMapValueTree<K, V>
impl<K, V> Debug for HashMapValueTree<K, V>
Source§impl<K, V> ValueTree for HashMapValueTree<K, V>
impl<K, V> ValueTree for HashMapValueTree<K, V>
Source§type Value = HashMap<<K as ValueTree>::Value, <V as ValueTree>::Value>
type Value = HashMap<<K as ValueTree>::Value, <V as ValueTree>::Value>
The type of the value produced by this
ValueTree
.Source§fn simplify(&mut self) -> bool
fn simplify(&mut self) -> bool
Attempts to simplify the current value. Notionally, this sets the
“high” value to the current value, and the current value to a “halfway
point” between high and low, rounding towards low. Read more
Source§fn complicate(&mut self) -> bool
fn complicate(&mut self) -> bool
Attempts to partially undo the last simplification. Notionally, this
sets the “low” value to one plus the current value, and the current
value to a “halfway point” between high and the new low, rounding
towards low. Read more
Auto Trait Implementations§
impl<K, V> Freeze for HashMapValueTree<K, V>
impl<K, V> RefUnwindSafe for HashMapValueTree<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for HashMapValueTree<K, V>
impl<K, V> Sync for HashMapValueTree<K, V>
impl<K, V> Unpin for HashMapValueTree<K, V>
impl<K, V> UnwindSafe for HashMapValueTree<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,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 128 bytes