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

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

Required Associated Types§

Required Methods§

source

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

Implementors§

source§

impl<T, U> TryInto2<U> for Twhere U: TryFrom2<T>,

§

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