pub trait IntoRobj {
    // Required method
    fn into_robj(self) -> Robj;
}

Required Methods§

source

fn into_robj(self) -> Robj

Implementors§

source§

impl<T> IntoRobj for T
where Robj: From<T>,