Struct vec_collections::VecMap [−][src]
pub struct VecMap<A: Array>(_);Expand description
A map backed by a SmallVec of key value pairs.
Implementations
retain all pairs matching a predicate
in-place merge with another map of the same type. The merge is right-biased, so on collisions the values from the rhs will win.
pub fn outer_join<W: Clone, R, F: Fn(OuterJoinArg<&K, &V, &W>) -> Option<R>, B: Array<Item = (K, W)>>(
&self,
that: &VecMap<B>,
f: F
) -> VecMap1<K, R>
pub fn left_join<W: Clone, R, F: Fn(&K, &V, Option<&W>) -> Option<R>, B: Array<Item = (K, W)>>(
&self,
that: &VecMap1<K, W>,
f: F
) -> VecMap1<K, R>
Trait Implementations
impl<'de, K, V, A: Array<Item = (K, V)>> Deserialize<'de> for VecMap<A> where
K: Deserialize<'de> + Ord + PartialEq + Clone,
V: Deserialize<'de>,
impl<'de, K, V, A: Array<Item = (K, V)>> Deserialize<'de> for VecMap<A> where
K: Deserialize<'de> + Ord + PartialEq + Clone,
V: Deserialize<'de>,
Deserialize this value from the given Serde deserializer. Read more
Extends a collection with the contents of an iterator. Read more
extend_one)Extends a collection with exactly one element.
extend_one)Reserves capacity in a collection for the given number of additional elements. Read more
Creates a value from an iterator. Read more
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl<A> RefUnwindSafe for VecMap<A> where
A: RefUnwindSafe,
<A as Array>::Item: RefUnwindSafe,
impl<A> UnwindSafe for VecMap<A> where
A: UnwindSafe,
<A as Array>::Item: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more