1 2 3 4 5 6
pub trait Translator { type Input; type Output; fn translate(data: Self::Input) -> Self::Output; }