Extractor

Trait Extractor 

Source
pub trait Extractor {
    type Output;

    // Required method
    fn get_next(&mut self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn get_next(&mut self) -> Self::Output

Implementors§

Source§

impl<Input, Output, E, M> Extractor for MappedExtractor<Input, Output, E, M>
where E: Extractor<Output = Input>, M: Mapper<Input, Output = Output>,

Source§

type Output = Output

Source§

impl<T> Extractor for GetFromQueue<T>