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

Required methods

Implementations on Foreign Types

Implementors