Struct fixed_size_vector::ArrayVec [] [src]

pub struct ArrayVec<A> { /* fields omitted */ }

Methods

impl<A> ArrayVec<A>
[src]

[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl<A: Clone> Clone for ArrayVec<A>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<A: Copy> Copy for ArrayVec<A>
[src]

impl<A: Debug> Debug for ArrayVec<A>
[src]

[src]

Formats the value using the given formatter.

impl<A: Default> Default for ArrayVec<A>
[src]

[src]

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

impl<'a, T: 'a, A: AsRef<[T]>> IntoIterator for &'a ArrayVec<A> where
    &'a A: IntoIterator<Item = &'a 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: 'a, A: AsRef<[T]> + AsMut<[T]>> IntoIterator for &'a mut ArrayVec<A> where
    &'a A: IntoIterator<Item = &'a 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