[−][src]Struct actix_web::dev::PayloadBuffer
Payload buffer
Methods
impl<S> PayloadBuffer<S> where
S: Stream<Item = Bytes, Error = PayloadError>,
[src]
S: Stream<Item = Bytes, Error = PayloadError>,
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,
S: Send,
impl<S> Sync for PayloadBuffer<S> where
S: Sync,
S: Sync,
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.