Trait IntoRc

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

Required Methods§

Source

fn into_rc(self) -> Rc<T>

Implementations on Foreign Types§

Source§

impl<T: ?Sized> IntoRc<T> for &Rc<T>

Source§

fn into_rc(self) -> Rc<T>

Source§

impl<T: ?Sized> IntoRc<T> for Rc<T>

Source§

fn into_rc(self) -> Rc<T>

Implementors§

Source§

impl<T> IntoRc<T> for T