pub struct Http11ChunksReadOutput {
pub body: Vec<u8>,
pub remaining: Vec<u8>,
}Expand description
Terminal output of Http11ChunksRead.
Fields§
§body: Vec<u8>The decoded body, all chunks concatenated.
remaining: Vec<u8>Bytes already buffered past the zero-length terminator.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Http11ChunksReadOutput
impl RefUnwindSafe for Http11ChunksReadOutput
impl Send for Http11ChunksReadOutput
impl Sync for Http11ChunksReadOutput
impl Unpin for Http11ChunksReadOutput
impl UnsafeUnpin for Http11ChunksReadOutput
impl UnwindSafe for Http11ChunksReadOutput
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