Trait dyn_clone::DynClone

source ·
pub trait DynClone: Sealed { }
Expand description

This trait is implemented by any type that implements std::clone::Clone.

Implementations on Foreign Types§

source§

impl DynClone for str

source§

impl<T> DynClone for [T]
where T: Clone,

Implementors§

source§

impl<T> DynClone for T
where T: Clone,