Type Alias pallet_example_kitchensink::pallet::Foo
source · pub type Foo<T> = StorageValue<_GeneratedPrefixForStorageFoo<T>, u32, OptionQuery, GetDefault>;
Expand description
A storage value. We mark this as unbounded, alter its prefix, and define a custom storage getter for it.
The value is stored a single trie node, and therefore can be retrieved with a single database access.
Storage type is [StorageValue
] with value type u32
.
Aliased Type§
struct Foo<T>(/* private fields */);