pub trait IntoRc<T: ?Sized> {
    fn into_rc(self) -> Rc<T>;
}

Required methods

Implementations on Foreign Types

Implementors