Struct monoio_http::h1::codec::decoder::ChunkedBodyDecoder
source · [−]pub struct ChunkedBodyDecoder(_);
Expand description
Decoder of http1 chunked body.
Trait Implementations
sourceimpl Decoder for ChunkedBodyDecoder
impl Decoder for ChunkedBodyDecoder
type Error = DecodeError
type Error = DecodeError
The type of unrecoverable frame decoding errors. Read more
sourcefn decode(
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
fn decode(
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
Attempts to decode a frame from the provided buffer of bytes. Read more
fn decode_eof(
&mut self,
buf: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
fn decode_eof(
&mut self,
buf: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
A default method available to be called when there are no more bytes
available to be read from the underlying I/O. Read more
sourceimpl Default for ChunkedBodyDecoder
impl Default for ChunkedBodyDecoder
sourcefn default() -> ChunkedBodyDecoder
fn default() -> ChunkedBodyDecoder
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for ChunkedBodyDecoder
impl Send for ChunkedBodyDecoder
impl Sync for ChunkedBodyDecoder
impl Unpin for ChunkedBodyDecoder
impl UnwindSafe for ChunkedBodyDecoder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more