pub trait Piper<T, Args, I, O> {
// Required method
fn pipe(self) -> Pied<T, Args, I, O>;
}Expand description
Common pipe trait used to create implementations for each tuple
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".