[][src]Trait para::IntoIteratorProducer

pub trait IntoIteratorProducer<'a, D, I: Iterator<Item = D>> {
    fn pipe<C: Consumer<'a, D>>(
        self,
        consumer: &'a C
    ) -> IteratorProducer<'a, D, I, C>; }

Required methods

fn pipe<C: Consumer<'a, D>>(
    self,
    consumer: &'a C
) -> IteratorProducer<'a, D, I, C>

Loading content...

Implementors

impl<'a, D, I: IntoIterator<Item = D>> IntoIteratorProducer<'a, D, <I as IntoIterator>::IntoIter> for I[src]

Loading content...