Struct rehashinghashmap::RehashingHashMap [] [src]

pub struct RehashingHashMap<K: Eq + Hash, V> { /* fields omitted */ }

Methods

impl<K, V> RehashingHashMap<K, V> where
    K: Eq + Hash + Clone
[src]

Trait Implementations

impl<K: Debug + Eq + Hash, V: Debug> Debug for RehashingHashMap<K, V>
[src]

Formats the value using the given formatter.

impl<K: Default + Eq + Hash, V: Default> Default for RehashingHashMap<K, V>
[src]

Returns the "default value" for a type. Read more

impl<K, V> PartialEq for RehashingHashMap<K, V> where
    K: Eq + Hash + Clone,
    V: PartialEq
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a, K, Q: ?Sized, V> Index<&'a Q> for RehashingHashMap<K, V> where
    K: Eq + Hash + Clone + Borrow<Q>,
    Q: Eq + Hash
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl<'a, K, V> IntoIterator for &'a RehashingHashMap<K, V> where
    K: Eq + Hash + Clone
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<'a, K, V> IntoIterator for &'a mut RehashingHashMap<K, V> where
    K: Eq + Hash + Clone
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<K, V> FromIterator<(K, V)> for RehashingHashMap<K, V> where
    K: Eq + Hash + Clone
[src]

Creates a value from an iterator. Read more

impl<K, V> Extend<(K, V)> for RehashingHashMap<K, V> where
    K: Eq + Hash + Clone
[src]

Extends a collection with the contents of an iterator. Read more