Struct densevec::DenseVec [] [src]

pub struct DenseVec<T> { /* fields omitted */ }

Methods

impl<T> DenseVec<T>
[src]

[src]

[src]

[src]

[src]

[src]

[src]

Important traits for Keys<'a>
[src]

[src]

[src]

Important traits for Iter<'a, T>
[src]

Important traits for IterMut<'a, T>
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl<T: Clone> Clone for DenseVec<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Debug> Debug for DenseVec<T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<T: PartialEq> PartialEq for DenseVec<T>
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl<T> IntoIterator for DenseVec<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<T> FromIterator<(usize, T)> for DenseVec<T>
[src]

[src]

Creates a value from an iterator. Read more

impl<'a, T> IntoIterator for &'a DenseVec<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<'a, T> IntoIterator for &'a mut DenseVec<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<T> Default for DenseVec<T>
[src]

[src]

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

impl<T> Index<usize> for DenseVec<T>
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl<T> IndexMut<usize> for DenseVec<T>
[src]

[src]

Performs the mutable indexing (container[index]) operation.

impl<T> Extend<(usize, T)> for DenseVec<T>
[src]

[src]

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

impl<'a, T: 'a + Copy> Extend<(usize, &'a T)> for DenseVec<T>
[src]

[src]

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

Auto Trait Implementations

impl<T> Send for DenseVec<T> where
    T: Send

impl<T> Sync for DenseVec<T> where
    T: Sync