pub trait Compose<Init> { type Output; // Required method fn compose(self, init: Init) -> Self::Output; }