pub trait IntoConcurrentStream {
type Item;
type IntoConcurrentStream: ConcurrentStream<Item = Self::Item>;
// Required method
fn into_co_stream(self) -> Self::IntoConcurrentStream;
}
Expand description
Conversion into a ConcurrentStream
Required Associated Types§
sourcetype IntoConcurrentStream: ConcurrentStream<Item = Self::Item>
type IntoConcurrentStream: ConcurrentStream<Item = Self::Item>
Which kind of iterator are we turning this into?
Required Methods§
sourcefn into_co_stream(self) -> Self::IntoConcurrentStream
fn into_co_stream(self) -> Self::IntoConcurrentStream
Convert self
into a concurrent iterator.