Struct monoio_http::h1::codec::decoder::FixedBodyDecoder
source · pub struct FixedBodyDecoder(_);
Expand description
Decoder of http1 body with fixed length.
Trait Implementations§
source§impl Decoder for FixedBodyDecoder
impl Decoder for FixedBodyDecoder
§type Error = DecodeError
type Error = DecodeError
The type of unrecoverable frame decoding errors. Read more
source§fn 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
Auto Trait Implementations§
impl RefUnwindSafe for FixedBodyDecoder
impl Send for FixedBodyDecoder
impl Sync for FixedBodyDecoder
impl Unpin for FixedBodyDecoder
impl UnwindSafe for FixedBodyDecoder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more