pub trait NoShortCircuitCollect {
    type Item;

    // Required method
    fn nsc_collect<T: FromIterator<Self::Item>>(self) -> T;
}

Required Associated Types§

Required Methods§

source

fn nsc_collect<T: FromIterator<Self::Item>>(self) -> T

Implementors§

source§

impl<E, I> NoShortCircuitCollect for Iwhere I: Iterator<Item = E>,

§

type Item = E