pub trait TryTo { // Provided method fn try_to<T>(self) -> Result<T, Self::Error> where Self: TryInto_<T> { ... } }