pub trait ExternalClone {
    fn external_clone(&self) -> Self;
}
Expand description

Helper trait for types which do not implement clone, but has a clone wrapper

Required methods

Clones the internal value

Implementations on Foreign Types

Implementors