pub trait TryApplyOnce<Rhs> { type Output; type Error; // Required method fn try_apply_once(self, rhs: Rhs) -> Result<Self::Output, Self::Error>; }