[][src]Struct input_buffer::InputBuffer

pub struct InputBuffer(_);

A FIFO buffer for reading packets from network.

Implementations

impl InputBuffer[src]

pub fn new() -> Self[src]

Create a new empty input buffer.

pub fn with_capacity(capacity: usize) -> Self[src]

Create a new empty input buffer.

pub fn from_partially_read(part: Vec<u8>) -> Self[src]

Create a input buffer filled with previously read data.

pub fn as_cursor(&self) -> &Cursor<Vec<u8>>[src]

Get the data as a cursor.

pub fn as_cursor_mut(&mut self) -> &mut Cursor<Vec<u8>>[src]

Get the data as a mutable cursor.

pub fn remove_garbage(&mut self)[src]

Remove the already consumed portion of the data.

pub fn into_vec(self) -> Vec<u8>[src]

Get the rest of the buffer and destroy the buffer.

pub fn read_from<S: Read>(&mut self, stream: &mut S) -> IoResult<usize>[src]

Read next portion of data from the given input stream.

pub fn prepare<'t>(&'t mut self) -> DoRead<'t>[src]

Prepare reading.

pub fn prepare_reserve<'t>(&'t mut self, reserve: usize) -> DoRead<'t>[src]

Prepare reading with the given reserve.

Trait Implementations

impl Buf for InputBuffer[src]

impl Debug for InputBuffer[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.