[][src]Struct cliff::LoadIterator

pub struct LoadIterator<I> { /* fields omitted */ }

An iterator that determines the maximum supported load by walking an iterator until the system cannot keep up.

See the crate-level documentation for details.

Trait Implementations

impl<I, T> CliffSearch for LoadIterator<I> where
    I: Iterator<Item = T>,
    T: Borrow<usize>, 
[src]

impl<I: Clone> Clone for LoadIterator<I>[src]

impl<I: Debug> Debug for LoadIterator<I>[src]

impl<I, T> From<I> for LoadIterator<I::IntoIter> where
    I: IntoIterator<Item = T>,
    T: Borrow<usize>, 
[src]

impl<I, T> Iterator for LoadIterator<I> where
    I: Iterator<Item = T>,
    T: Borrow<usize>, 
[src]

type Item = usize

The type of the elements being iterated over.

Auto Trait Implementations

impl<I> Send for LoadIterator<I> where
    I: Send

impl<I> Sync for LoadIterator<I> where
    I: Sync

impl<I> Unpin for LoadIterator<I> where
    I: Unpin

Blanket Implementations

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

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

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

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

type Error = Infallible

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.