dyn_clone

Trait 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,