Struct serenity::utils::VecMap[][src]

pub struct VecMap<K, V>(_);

Like HashMap but solely uses a vector instead.

note: This is for internal use.

Methods

impl<K: PartialEq, V> VecMap<K, V>
[src]

Important traits for Iter<'a, T>

Trait Implementations

impl<K: Clone, V: Clone> Clone for VecMap<K, V>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<K: Debug, V: Debug> Debug for VecMap<K, V>
[src]

Formats the value using the given formatter. Read more

impl<K: Default, V: Default> Default for VecMap<K, V>
[src]

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

impl<K, V> IntoIterator for VecMap<K, V>
[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 VecMap<K, V>
[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

Auto Trait Implementations

impl<K, V> Send for VecMap<K, V> where
    K: Send,
    V: Send

impl<K, V> Sync for VecMap<K, V> where
    K: Sync,
    V: Sync