1 2 3 4 5 6 7 8 9 10 11
mod iterator; mod stream; pub use paste; pub trait UniPipe: Default { type Input; type Output; fn next(&mut self, input: Option<Self::Input>) -> Option<Self::Output>; }