[][src]Trait libsugar::named_into::IntoRc

pub trait IntoRc: Sized {
    pub fn rc(self) -> Rc<Self> { ... }
pub fn rc_refcell(self) -> Rc<RefCell<Self>> { ... }
pub fn rc_cell(self) -> Rc<Cell<Self>> { ... } }

Provided methods

pub fn rc(self) -> Rc<Self>[src]

pub fn rc_refcell(self) -> Rc<RefCell<Self>>[src]

pub fn rc_cell(self) -> Rc<Cell<Self>>[src]

Loading content...

Implementors

impl<T> IntoRc for T[src]

Loading content...