pub enum HttpStreamDriverEvent {
Head(HttpStreamHead),
Chunk(Vec<u8>),
Error(GraphError),
Complete,
}Expand description
HttpStreamDriverEvent variants.
Variants§
Head(HttpStreamHead)
Head variant.
Chunk(Vec<u8>)
Chunk variant.
Error(GraphError)
Error variant.
Complete
Complete variant.
Auto Trait Implementations§
impl Freeze for HttpStreamDriverEvent
impl !RefUnwindSafe for HttpStreamDriverEvent
impl !Send for HttpStreamDriverEvent
impl !Sync for HttpStreamDriverEvent
impl Unpin for HttpStreamDriverEvent
impl UnsafeUnpin for HttpStreamDriverEvent
impl !UnwindSafe for HttpStreamDriverEvent
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