pub trait Join<Rhs> { type Output; // Required method fn join(self, rhs: Rhs) -> Self::Output; }
The regressive product.