Trait ForwardIter

Source
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: IntoIterator<Item = M>, M: Forward<T, Output = T>, T: Clone,

Source§

type Item = M