pub trait IntoOutcome { type Content; // Required method fn into_outcome(self) -> Outcome<Self::Content>; }