pub trait ErasedStream { // Required method fn poll_next_bytes( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Option<Result<Vec<u8>, String>>>; }
Type-erased stream trait for dispatch results.
Get the next item as serialized bytes.