Trait frame_support::storage::types::StorageValueMetadata [−][src]
pub trait StorageValueMetadata {
const MODIFIER: StorageEntryModifier;
const NAME: &'static str;
const DEFAULT: DefaultByteGetter;
}Expand description
Part of storage metadata for storage value.
Associated Constants
const DEFAULT: DefaultByteGetterImplementors
impl<Prefix, Value, QueryKind, OnEmpty> StorageValueMetadata for StorageValue<Prefix, Value, QueryKind, OnEmpty> where
Prefix: StorageInstance,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,