[][src]Struct buffered_reader::Reserve

pub struct Reserve<'a, C> { /* fields omitted */ }

A Reserve allows a reader to read everything except for the last N bytes (the reserve) from the underlying BufferedReader.

Note: because the Reserve doesn't generally know how much data can be read from the underlying BufferedReader, it causes at least N bytes to by buffered.

Methods

impl<'a> Reserve<'a, ()>[src]

pub fn new(reader: Box<dyn BufferedReader<()> + 'a>, reserve: usize) -> Self[src]

Instantiates a new Reserve.

reader is the source to wrap. reserve is the number of bytes that will not be returned to the reader.

impl<'a, C> Reserve<'a, C>[src]

Like new(), but sets a cookie.

The cookie can be retrieved using the cookie_ref and cookie_mut methods, and set using the cookie_set method.

Trait Implementations

impl<'a, C> BufferedReader<C> for Reserve<'a, C>[src]

fn data(&mut self, amount: usize) -> Result<&[u8], Error>[src]

Return the buffer. Ensure that it contains at least amount bytes.

impl<'a, C> Display for Reserve<'a, C>[src]

impl<'a, C> Debug for Reserve<'a, C>[src]

impl<'a, C> Read for Reserve<'a, C>[src]

Auto Trait Implementations

impl<'a, C> Unpin for Reserve<'a, C> where
    C: Unpin

impl<'a, C> !Sync for Reserve<'a, C>

impl<'a, C> !Send for Reserve<'a, C>

impl<'a, C> !UnwindSafe for Reserve<'a, C>

impl<'a, C> !RefUnwindSafe for Reserve<'a, C>

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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