pub struct ChunkedBodyDecoder { /* private fields */ }Expand description
Decoder for chunked bodies.
It does only a constant amount of allocations. The message body is returned in form of chunks. No chunks will be returned once the body has been successfully decoded.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChunkedBodyDecoder
impl RefUnwindSafe for ChunkedBodyDecoder
impl Send for ChunkedBodyDecoder
impl Sync for ChunkedBodyDecoder
impl Unpin for ChunkedBodyDecoder
impl UnwindSafe for ChunkedBodyDecoder
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