pub trait Into2<T>: Sized {
    // Required method
    fn into2(self) -> T;
}

Required Methods§

source

fn into2(self) -> T

Implementors§

source§

impl<T, U> Into2<U> for Twhere U: From2<T>,