pub enum Http11ReadChunksStreamYield {
WantsRead,
Frame {
body: Vec<u8>,
},
}Expand description
Per-step yield emitted by Http11ReadChunksStream; adds
Self::Frame to the standard HttpYield shape.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Http11ReadChunksStreamYield
impl RefUnwindSafe for Http11ReadChunksStreamYield
impl Send for Http11ReadChunksStreamYield
impl Sync for Http11ReadChunksStreamYield
impl Unpin for Http11ReadChunksStreamYield
impl UnsafeUnpin for Http11ReadChunksStreamYield
impl UnwindSafe for Http11ReadChunksStreamYield
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