pub trait PipeTask<Input> {
type Output;
type Async: Pipe<Input, Output = Self::Output>;
// Required method
fn into_async(self) -> Self::Async;
}Required Associated Types§
Required Methods§
fn into_async(self) -> Self::Async
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".