pub trait CloneWithStorage<S> {
type CloneType;
// Required method
fn clone_with_storage(&self, storage: S) -> Self::CloneType;
}Expand description
Clone the structure of a set replacing its storage with a new one.
pub trait CloneWithStorage<S> {
type CloneType;
// Required method
fn clone_with_storage(&self, storage: S) -> Self::CloneType;
}Clone the structure of a set replacing its storage with a new one.