pub trait TryUnwrap { type Val; // Required method fn try_unwrap(self) -> Result<Self::Val, String>; }