pub trait Transform<Rhs> { type Output; // Required method fn transform(self, rhs: Rhs) -> Self::Output; }