pub struct Map<K, V>(pub Vec<(K, V)>);Expand description
Represents a map parsed from the meta.
Tuple Fields§
§0: Vec<(K, V)>Trait Implementations§
source§impl<K, V> ConvertParsed for Map<K, V>where
K: ConvertParsed,
V: ConvertParsed,
impl<K, V> ConvertParsed for Map<K, V>where
K: ConvertParsed,
V: ConvertParsed,
§type Type = Map<<K as ConvertParsed>::Type, <V as ConvertParsed>::Type>
type Type = Map<<K as ConvertParsed>::Type, <V as ConvertParsed>::Type>
The type this can be converted from
source§impl<K: Ord, V: Ord> Ord for Map<K, V>
impl<K: Ord, V: Ord> Ord for Map<K, V>
source§impl<K: PartialEq, V: PartialEq> PartialEq for Map<K, V>
impl<K: PartialEq, V: PartialEq> PartialEq for Map<K, V>
source§impl<K: PartialOrd, V: PartialOrd> PartialOrd for Map<K, V>
impl<K: PartialOrd, V: PartialOrd> PartialOrd for Map<K, V>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl<K: Eq, V: Eq> Eq for Map<K, V>
impl<K, V> StructuralPartialEq for Map<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for Map<K, V>
impl<K, V> RefUnwindSafe for Map<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for Map<K, V>
impl<K, V> Sync for Map<K, V>
impl<K, V> Unpin for Map<K, V>
impl<K, V> UnwindSafe for Map<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