pub trait CloneOwned {
type Owned;
// Required method
fn clone_owned(&self) -> Self::Owned;
}
Expand description
Clones the underlying data structure, like ToOwned.
Required Associated Types§
Required Methods§
fn clone_owned(&self) -> Self::Owned
Implementors§
Source§impl<T: Clone> CloneOwned for ArcWrapped<T>
ToOwned won’t work here
impl<T: Clone> CloneOwned for ArcWrapped<T>
ToOwned won’t work here