pub struct StringHashMap<V>(pub HashMap<String, V>);Expand description
HashMap<String, V>
Tuple Fields§
§0: HashMap<String, V>Trait Implementations§
Source§impl<V: Clone> Clone for StringHashMap<V>
impl<V: Clone> Clone for StringHashMap<V>
Source§fn clone(&self) -> StringHashMap<V>
fn clone(&self) -> StringHashMap<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 moreSource§impl<V: Debug> Debug for StringHashMap<V>
impl<V: Debug> Debug for StringHashMap<V>
Source§impl<V> Default for StringHashMap<V>
impl<V> Default for StringHashMap<V>
Source§impl<'de, V> Deserialize<'de> for StringHashMap<V>where
V: Deserialize<'de>,
impl<'de, V> Deserialize<'de> for StringHashMap<V>where
V: Deserialize<'de>,
Source§fn 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
Source§impl<V: PartialEq> PartialEq for StringHashMap<V>
impl<V: PartialEq> PartialEq for StringHashMap<V>
Source§impl<V: Serialize> Serialize for StringHashMap<V>
impl<V: Serialize> Serialize for StringHashMap<V>
impl<V: Eq> Eq for StringHashMap<V>
impl<V> StructuralPartialEq for StringHashMap<V>
Auto Trait Implementations§
impl<V> Freeze for StringHashMap<V>
impl<V> RefUnwindSafe for StringHashMap<V>where
V: RefUnwindSafe,
impl<V> Send for StringHashMap<V>where
V: Send,
impl<V> Sync for StringHashMap<V>where
V: Sync,
impl<V> Unpin for StringHashMap<V>where
V: Unpin,
impl<V> UnwindSafe for StringHashMap<V>where
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