Skip to main content

Pipe

Trait Pipe 

Source
pub trait Pipe {
    type Input;
    type Output: ToTokens;

    // Required method
    fn pipe(&self, input: Self::Input) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn pipe(&self, input: Self::Input) -> Self::Output

Implementors§