pub trait CloneOwned {
    type Owned;

    fn clone_owned(&self) -> Self::Owned;
}
Expand description

Clones the underlying data structure, like ToOwned.

Required Associated Types

Required Methods

Implementors

ToOwned won’t work here

ToOwned won’t work here because it’s really difficult to implement Borrow on Wrapped with the Rc<RefCell<>> chain on the way to the data