pub trait EventStreamExt<S, E>where S: Stream<Item = Result<Bytes, E>> + Unpin + 'static, E: Into<Error>,{ // Required method fn event_stream(self) -> EventStream<S, E>; }