Type Alias pallet_template::pallet::Something
source · pub type Something<T> = StorageValue<_GeneratedPrefixForStorageSomething<T>, u32>;
Expand description
A storage item for this pallet.
In this template, we are declaring a storage item called Something
that stores a single
u32
value. Learn more about runtime storage here: https://docs.substrate.io/build/runtime-storage/
Storage type is [StorageValue
] with value type u32
.
Aliased Type§
struct Something<T>(/* private fields */);