Trait Cloneable

Source
pub trait Cloneable:
    DynClone
    + Send
    + Sync
    + Debug {
    // Required method
    fn as_any(&self) -> &dyn Any;
}

Required Methods§

Source

fn as_any(&self) -> &dyn Any

Implementors§

Source§

impl<T: DynClone + Send + Sync + Debug + 'static> Cloneable for T