pub trait Piper<T, Args, I, O> {
    fn pipe(self) -> Pied<T, Args, I, O>;
}
Expand description

Common pipe trait used to create implementations for each tuple

Required Methods

Implementations on Foreign Types

Implementors