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,
Source§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: PartialOrd, V: PartialOrd> PartialOrd for Map<K, V>
impl<K: PartialOrd, V: PartialOrd> PartialOrd for Map<K, V>
impl<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