pub trait StorageEntryMetadataBuilder {
    fn build_metadata(
        doc: Vec<&'static str, Global>,
        entries: &mut Vec<StorageEntryMetadata<MetaForm>, Global>
    ); }
Expand description

Build the metadata of a storage.

Implemented by each of the storage types: value, map, countedmap, doublemap and nmap.

Required Methods§

Build into entries the storage metadata entries of a storage given some docs.

Implementors§