Trait parser_combinators::primitives::Stream [] [src]

pub trait Stream: Clone {
    type Item: Positioner;
    fn uncons(self) -> Result<(Self::Item, Self), Error<Self::Item>>;
}

A stream is a sequence of items that can be extracted one by one

Associated Types

Required Methods

Takes a stream and removes its first item, yielding the item and the rest of the elements Returns Err when no more elements could be retrieved

Implementors