Pipe

Trait Pipe 

Source
pub trait Pipe {
    // Provided method
    fn pipe<O, F: FnOnce(Self) -> O>(self, f: F) -> O
       where Self: Sized { ... }
}

Provided Methods§

Source

fn pipe<O, F: FnOnce(Self) -> O>(self, f: F) -> O
where Self: Sized,

Implementors§

Source§

impl<T> Pipe for T