Trait concision::ForwardIter

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

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

Required Associated Types§

source

type Item: Forward<T, Output = T>

Required Methods§

source

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

Implementors§

source§

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

§

type Item = M