Struct streaming_iterator::Successors[][src]

pub struct Successors<T, F> { /* fields omitted */ }

An iterator where each successive item is computed from the preceding one.

Note: if an item is modified through StreamingIteratorMut, those changes will be visible to the successor function when the iterator is advanced.

Trait Implementations

impl<T: Clone, F: Clone> Clone for Successors<T, F>[src]

impl<T: Debug, F: Debug> Debug for Successors<T, F>[src]

impl<T, F: FnMut(T) -> Option<T>> StreamingIterator for Successors<T, F>[src]

type Item = T

The type of the elements being iterated over.

impl<T, F: FnMut(T) -> Option<T>> StreamingIteratorMut for Successors<T, F>[src]

Auto Trait Implementations

impl<T, F> Send for Successors<T, F> where
    F: Send,
    T: Send

impl<T, F> Sync for Successors<T, F> where
    F: Sync,
    T: Sync

impl<T, F> Unpin for Successors<T, F> where
    F: Unpin,
    T: 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<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.