[][src]Trait streamparser::Buffer

pub trait Buffer {
    type Output: ?Sized;
    fn buffer(&mut self) -> (&Self::Output, &mut usize);
fn exhausted(&self) -> bool; }

Associated Types

type Output: ?Sized

Loading content...

Required methods

fn buffer(&mut self) -> (&Self::Output, &mut usize)

fn exhausted(&self) -> bool

Loading content...

Implementors

impl<T, S> Buffer for IterSource<T, S>[src]

type Output = [T]

impl<T, S> Buffer for ReadSource<T, S>[src]

type Output = [T]

Loading content...