[][src]Struct densevec::KeyedDenseVec

pub struct KeyedDenseVec<K, T> { /* fields omitted */ }

Methods

impl<K: Key, T> KeyedDenseVec<K, T>[src]

pub fn new() -> KeyedDenseVec<K, T>[src]

pub fn with_capacity(capacity: usize) -> Self[src]

pub fn capacity(&self) -> usize[src]

pub fn reserve(&mut self, additional: usize)[src]

pub fn reserve_exact(&mut self, additional: usize)[src]

pub fn shrink_to_fit(&mut self)[src]

Important traits for Keys<'a, K>
pub fn keys(&self) -> Keys<K>[src]

pub fn values(&self) -> Iter<T>[src]

pub fn values_mut(&mut self) -> IterMut<T>[src]

Important traits for Iter<'a, K, T>
pub fn iter(&self) -> Iter<K, T>[src]

Important traits for IterMut<'a, K, T>
pub fn iter_mut(&mut self) -> IterMut<K, T>[src]

pub fn entry(&mut self, guid: K) -> Entry<K, T>[src]

pub fn len(&self) -> usize[src]

pub fn is_empty(&self) -> bool[src]

pub fn clear(&mut self)[src]

pub fn get(&self, guid: K) -> Option<&T>[src]

pub fn get_mut(&mut self, guid: K) -> Option<&mut T>[src]

pub unsafe fn get_unchecked(&self, guid: K) -> &T[src]

pub unsafe fn get_unchecked_mut(&mut self, guid: K) -> &mut T[src]

pub fn contains_key(&self, guid: K) -> bool[src]

pub fn insert(&mut self, guid: K, t: T) -> Option<T>[src]

pub fn remove(&mut self, guid: K) -> Option<T>[src]

pub fn insert_key_gen(&mut self, value: T) -> K[src]

pub fn swap(&mut self, guid1: K, guid2: K)[src]

Trait Implementations

impl<K: Key, T> Extend<(K, T)> for KeyedDenseVec<K, T>[src]

impl<'a, K: Key, T: 'a + Copy> Extend<(K, &'a T)> for KeyedDenseVec<K, T>[src]

impl<K: Key, T> IntoIterator for KeyedDenseVec<K, T>[src]

type Item = (K, T)

The type of the elements being iterated over.

type IntoIter = IntoIter<K, T>

Which kind of iterator are we turning this into?

impl<'a, K: Key, T> IntoIterator for &'a KeyedDenseVec<K, T>[src]

type Item = (K, &'a T)

The type of the elements being iterated over.

type IntoIter = Iter<'a, K, T>

Which kind of iterator are we turning this into?

impl<'a, K: Key, T> IntoIterator for &'a mut KeyedDenseVec<K, T>[src]

type Item = (K, &'a mut T)

The type of the elements being iterated over.

type IntoIter = IterMut<'a, K, T>

Which kind of iterator are we turning this into?

impl<K, T: Clone> Clone for KeyedDenseVec<K, T>[src]

impl<K: Key, T> Default for KeyedDenseVec<K, T>[src]

impl<K: Key, T: PartialEq> PartialEq<KeyedDenseVec<K, T>> for KeyedDenseVec<K, T>[src]

impl<K: Key + Debug, T: Debug> Debug for KeyedDenseVec<K, T>[src]

impl<K: Key, T> Index<K> for KeyedDenseVec<K, T>[src]

type Output = T

The returned type after indexing.

impl<K: Key, T> IndexMut<K> for KeyedDenseVec<K, T>[src]

impl<K: Key, T> FromIterator<(K, T)> for KeyedDenseVec<K, T>[src]

Auto Trait Implementations

impl<K, T> Send for KeyedDenseVec<K, T> where
    K: Send,
    T: Send

impl<K, T> Sync for KeyedDenseVec<K, T> where
    K: Sync,
    T: Sync

impl<K, T> Unpin for KeyedDenseVec<K, T> where
    K: Unpin,
    T: Unpin

impl<K, T> UnwindSafe for KeyedDenseVec<K, T> where
    K: UnwindSafe,
    T: UnwindSafe

impl<K, T> RefUnwindSafe for KeyedDenseVec<K, T> where
    K: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]