pub trait Pipe { type Input; type Output: ToTokens; // Required method fn pipe(&self, input: Self::Input) -> Self::Output; }
Implemented by #[zyn::pipe] types. Transforms a value in a pipe chain.
#[zyn::pipe]