1 2 3 4 5
pub trait ParDataHandler { type Input; type Output; fn forward(&self, data: &Self::Input) -> Self::Output; }