pub trait PipeTask<Input> {
type Output;
type Async: Pipe<Input, Output = Self::Output>;
// Required method
fn into_async(self) -> Self::Async;
}pub trait PipeTask<Input> {
type Output;
type Async: Pipe<Input, Output = Self::Output>;
// Required method
fn into_async(self) -> Self::Async;
}