StorageEntry

Type Alias StorageEntry 

Source
pub type StorageEntry<'a> = Entry<Cow<'a, str>, Cow<'a, str>>;
Expand description

An entry denoting a pallet or a constant name.

Aliased Type§

pub enum StorageEntry<'a> {
    In(Cow<'a, str>),
    Name(Cow<'a, str>),
}

Variants§

§

In(Cow<'a, str>)

The name of the thing that the following entries are in/under.

§

Name(Cow<'a, str>)

The name of the entry in/under the last given Entry::In.