Trait flatk::CloneWithStorage[][src]

pub trait CloneWithStorage<S> {
    type CloneType;
    fn clone_with_storage(&self, storage: S) -> Self::CloneType;
}
Expand description

Clone the structure of a set replacing its storage with a new one.

Associated Types

Required methods

Implementations on Foreign Types

This function simply ignores self and returns storage since self is already a storage type.

This function simply ignores self and returns storage since self is already a storage type.

This function simply ignores self and returns storage since self is already a storage type.

This function simply ignores self and returns storage since self is already a storage type.

Implementors