Struct monoio_http::h1::codec::decoder::ResponseHeadDecoder
source · pub struct ResponseHeadDecoder;
Expand description
Decoder of http1 response header.
Trait Implementations§
source§impl Decoder for ResponseHeadDecoder
impl Decoder for ResponseHeadDecoder
§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
source§impl Default for ResponseHeadDecoder
impl Default for ResponseHeadDecoder
source§fn default() -> ResponseHeadDecoder
fn default() -> ResponseHeadDecoder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ResponseHeadDecoder
impl Send for ResponseHeadDecoder
impl Sync for ResponseHeadDecoder
impl Unpin for ResponseHeadDecoder
impl UnwindSafe for ResponseHeadDecoder
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