1/* 2 Appellation: transform <module> 3 Contrib: @FL03 4*/ 5 6pub trait Transform<Rhs> { 7 type Output; 8 9 fn transform(self, rhs: Rhs) -> Self::Output; 10}