Trait mentat_core::FromRc []

pub trait FromRc<T> {
    fn from_rc(val: Rc<T>) -> Self;
fn from_arc(val: Arc<T>) -> Self; }

Required Methods

Implementations on Foreign Types

impl<T> FromRc<T> for Rc<T> where
    T: Clone

impl<T> FromRc<T> for Arc<T> where
    T: Clone

impl<T> FromRc<T> for Box<T> where
    T: Clone

Important traits for Box<R>

Important traits for Box<R>

Implementors