[][src]Trait libsugar::named_into::IntoArc

pub trait IntoArc: Sized {
    pub fn arc(self) -> Arc<Self> { ... }
pub fn arc_mutex(self) -> Arc<Mutex<Self>> { ... }
pub fn arc_rwlock(self) -> Arc<RwLock<Self>> { ... } }

Provided methods

pub fn arc(self) -> Arc<Self>[src]

pub fn arc_mutex(self) -> Arc<Mutex<Self>>[src]

pub fn arc_rwlock(self) -> Arc<RwLock<Self>>[src]

Loading content...

Implementors

impl<T> IntoArc for T[src]

Loading content...