Trait qwutils::refc::RefClonable[][src]

pub trait RefClonable {
    fn refc(&self) -> Self;
}

Clone function but only does cheap ref-cloning like rc

Required methods

fn refc(&self) -> Self[src]

Loading content...

Implementations on Foreign Types

impl<T> RefClonable for Arc<T> where
    T: ?Sized
[src]

impl<T> RefClonable for Rc<T> where
    T: ?Sized
[src]

impl<T> RefClonable for Box<T> where
    T: RefClonable
[src]

Loading content...

Implementors

impl<T> RefClonable for ArcSlice<T>[src]

Loading content...