pub trait UtilTryInto<I> { type Error; // Required method fn util_try_into(self) -> Result<I, Self::Error>; }