[][src]Struct actix_web::dev::PayloadBuffer

pub struct PayloadBuffer<S> { /* fields omitted */ }

Payload buffer

Methods

impl<S> PayloadBuffer<S> where
    S: Stream<Item = Bytes, Error = PayloadError>, 
[src]

pub fn new(stream: S) -> Self[src]

Create new PayloadBuffer instance

pub fn get_mut(&mut self) -> &mut S[src]

Get mutable reference to an inner stream.

pub fn readany(&mut self) -> Poll<Option<Bytes>, PayloadError>[src]

Read first available chunk of bytes

pub fn can_read(&mut self, size: usize) -> Poll<Option<bool>, PayloadError>[src]

Check if buffer contains enough bytes

pub fn get_chunk(&mut self) -> Poll<Option<&[u8]>, PayloadError>[src]

Return reference to the first chunk of data

pub fn read_exact(&mut self, size: usize) -> Poll<Option<Bytes>, PayloadError>[src]

Read exact number of bytes

pub fn drop_bytes(&mut self, size: usize)[src]

Remove specified amount if bytes from buffer

pub fn copy(&mut self, size: usize) -> Poll<Option<BytesMut>, PayloadError>[src]

Copy buffered data

pub fn read_until(&mut self, line: &[u8]) -> Poll<Option<Bytes>, PayloadError>[src]

Read until specified ending

pub fn readline(&mut self) -> Poll<Option<Bytes>, PayloadError>[src]

Read bytes until new line delimiter

pub fn unprocessed(&mut self, data: Bytes)[src]

Put unprocessed data back to the buffer

pub fn remaining(&mut self) -> Bytes[src]

Get remaining data from the buffer

Auto Trait Implementations

impl<S> Send for PayloadBuffer<S> where
    S: Send

impl<S> Sync for PayloadBuffer<S> where
    S: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Erased for T