Trait TryIntoExt

Source
pub trait TryIntoExt: Sized {
    // Provided method
    fn try_into_<T>(self) -> Result<T, <Self as TryInto<T>>::Error>
       where Self: TryInto<T> { ... }
}

Provided Methods§

Source

fn try_into_<T>(self) -> Result<T, <Self as TryInto<T>>::Error>
where Self: TryInto<T>,

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.

Implementors§

Source§

impl<T> TryIntoExt for T