Trait RamaInto

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

Required Methods§

fn rama_into(self) -> 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§

§

impl<T, U> RamaInto<U> for T
where U: RamaFrom<T>,