Struct cooks::Dishes [-]  [+] [src]

pub struct Dishes<'a, Txty: 'a, Rxty: 'a, T, F: 'a> {
    // some fields omitted
}

Trait Implementations

impl<'a, Txty: Send, Rxty: Send, T, F> Iterator for Dishes<'a, Txty, Rxty, T, F> where T: Iterator<Item=Txty>, F: Fn(Txty) -> Option<Rxty>, F: Send + Sync + 'static

type Item = Rxty

fn next(&mut self) -> Option<Rxty>

fn size_hint(&self) -> (usize, Option<usize>)