Trait orml_traits::parameters::Into2

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

Required Methods§

source

fn into2(self) -> T

Object Safety§

This trait is not object safe.

Implementors§

source§

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