Struct input_buffer::InputBuffer [−][src]
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
impl RefUnwindSafe for InputBuffer
impl Send for InputBuffer
impl Sync for InputBuffer
impl Unpin for InputBuffer
impl UnwindSafe for InputBuffer
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<B> BufExt for B where
B: Buf + ?Sized,
[src][+]
B: Buf + ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,