pub trait TryIntoExt: Sized {
// Provided method
fn try_into_<T>(self) -> Result<T, <Self as TryInto<T>>::Error>
where Self: TryInto<T> { ... }
}
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.