[][src]Trait streamparser::Advance

pub trait Advance {
    type Error;
    fn advance(&mut self) -> Result<(), Self::Error>;
}

Associated Types

type Error

Loading content...

Required methods

fn advance(&mut self) -> Result<(), Self::Error>

Loading content...

Implementors

impl<B, E, T, S> Advance for IterSource<T, S> where
    T: Clone,
    B: AsRef<[T]>,
    S: Iterator<Item = Result<B, E>>, 
[src]

type Error = E

impl<S> Advance for ReadSource<u8, S> where
    S: Read
[src]

type Error = S::Error

Loading content...