pub enum Output {
Packet(OutputPacket),
Eos {
stream_lifetime_ordinal: u64,
},
CodecChannelClose,
}
Expand description
Output represents any output from a stream we might want to validate programmatically.
This may extend to contain not just explicit events but certain stream control behaviors or even errors.
Variants§
Trait Implementations§
impl StructuralPartialEq for Output
Auto Trait Implementations§
impl Freeze for Output
impl RefUnwindSafe for Output
impl !Send for Output
impl !Sync for Output
impl Unpin for Output
impl UnwindSafe for Output
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