pub trait StreamTask {
type Item;
type Async: Stream<Item = Self::Item>;
// Required method
fn into_async(self) -> Self::Async;
}pub trait StreamTask {
type Item;
type Async: Stream<Item = Self::Item>;
// Required method
fn into_async(self) -> Self::Async;
}