pub trait TryIntoExt<T>: Sized {
    type Error;

    // Required method
    fn try_into_ext(self) -> Result<T, Self::Error>;
}
Expand description

A manual implementation of TryInto.

A blanket implementation is provided for implementers of TryFromExt<T>.

Required Associated Types§

Required Methods§

source

fn try_into_ext(self) -> Result<T, Self::Error>

Tries to perform the conversion.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, U> TryIntoExt<U> for T
where U: TryFromExt<T>,

§

type Error = <U as TryFromExt<T>>::Error