pub trait ForwardIter<T> {
    type Item: Forward<T, Output = T>;

    // Required method
    fn forward_iter(
        self,
        args: &T
    ) -> Result<<Self::Item as Forward<T>>::Output, PredictError>;
}

Required Associated Types§

source

type Item: Forward<T, Output = T>

Required Methods§

source

fn forward_iter( self, args: &T ) -> Result<<Self::Item as Forward<T>>::Output, PredictError>

Implementors§

source§

impl<I, M, T> ForwardIter<T> for I
where I: Iterator<Item = M>, M: Forward<T, Output = T>, T: Clone,

§

type Item = M