[][src]Struct combine_elastic_buffered_stream::ElasticBufferedReadStream

pub struct ElasticBufferedReadStream<R: Read> { /* fields omitted */ }

Methods

impl<R: Read> ElasticBufferedReadStream<R>[src]

pub fn new(read: R) -> Self[src]

pub fn buffer_len(&self) -> usize[src]

Trait Implementations

impl<R: Read> StreamOnce for ElasticBufferedReadStream<R>[src]

type Item = u8

The type of items which is yielded from this stream.

type Range = u8

The type of a range of items yielded from this stream. Types which do not a have a way of yielding ranges of items should just use the Self::Item for this type. Read more

type Position = u64

Type which represents the position in a stream. Ord is required to allow parsers to determine which of two positions are further ahead. Read more

type Error = Errors<u8, u8, u64>

impl<R: Read> Positioned for ElasticBufferedReadStream<R>[src]

impl<R: Read> Resetable for ElasticBufferedReadStream<R>[src]

type Checkpoint = CheckPoint

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<I> Stream for I where
    I: StreamOnce + Positioned + Resetable,
    <I as StreamOnce>::Error: ParseError<<I as StreamOnce>::Item, <I as StreamOnce>::Range, <I as StreamOnce>::Position>, 
[src]