pub enum DecodeEvent {
NeedMore,
Chunk(Vec<u8>),
Done(Vec<(HeaderName, HeaderValue)>),
}Variants§
Auto Trait Implementations§
impl Freeze for DecodeEvent
impl RefUnwindSafe for DecodeEvent
impl Send for DecodeEvent
impl Sync for DecodeEvent
impl Unpin for DecodeEvent
impl UnsafeUnpin for DecodeEvent
impl UnwindSafe for DecodeEvent
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