[][src]Struct static_alloc::fixed_vec::Drain

pub struct Drain<'a, T> { /* fields omitted */ }

An iterator removing a range of elements from a FixedVec.

See FixedVec::drain for more information.

Methods

impl<'_, T> Drain<'_, T>[src]

pub fn as_slice(&self) -> &[T][src]

View the remaining data as a slice.

Similar to slice::Iter::as_slice but you are not allowed to use the iterator as it will invalidate the pointees. This is an extended form of Peekable::peek.

pub fn as_mut_slice(&mut self) -> &mut [T][src]

View the remaining data as a mutable slice.

This is Peekable::peek on steroids.

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

The count of remaining elements to drain.

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

If there are any elements remaining.

Trait Implementations

impl<'_, T> Drop for Drain<'_, T>[src]

impl<'_, T> Iterator for Drain<'_, T>[src]

type Item = T

The type of the elements being iterated over.

impl<'_, T> DoubleEndedIterator for Drain<'_, T>[src]

impl<'_, T> ExactSizeIterator for Drain<'_, T>[src]

impl<'_, T> FusedIterator for Drain<'_, T>[src]

Auto Trait Implementations

impl<'a, T> Unpin for Drain<'a, T>

impl<'a, T> !Send for Drain<'a, T>

impl<'a, T> !Sync for Drain<'a, T>

Blanket Implementations

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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, U> Into<U> for T where
    U: From<T>, 
[src]

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]