Type Alias frame_system::pallet::BlockHash
source · pub type BlockHash<T: Config> = StorageMap<_GeneratedPrefixForStorageBlockHash<T>, Twox64Concat, BlockNumberFor<T>, T::Hash, ValueQuery>;
Expand description
Map of block numbers to block hashes.
Storage type is StorageMap
with key type BlockNumberFor < T >
and value type T :: Hash
.
Aliased Type§
struct BlockHash<T: Config>(/* private fields */);
Implementations
source§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query> + 'static,
MaxValues: Get<Option<u32>>,
sourcepub fn hashed_key_for<KeyArg>(key: KeyArg) -> Vec<u8> ⓘwhere
KeyArg: EncodeLike<Key>,
pub fn hashed_key_for<KeyArg>(key: KeyArg) -> Vec<u8> ⓘwhere
KeyArg: EncodeLike<Key>,
Get the storage key used to fetch a value corresponding to a specific key.
sourcepub fn contains_key<KeyArg>(key: KeyArg) -> boolwhere
KeyArg: EncodeLike<Key>,
pub fn contains_key<KeyArg>(key: KeyArg) -> boolwhere
KeyArg: EncodeLike<Key>,
Does the value (explicitly) exist in storage?
sourcepub fn get<KeyArg>(
key: KeyArg,
) -> <QueryKind as QueryKindTrait<Value, OnEmpty>>::Querywhere
KeyArg: EncodeLike<Key>,
pub fn get<KeyArg>(
key: KeyArg,
) -> <QueryKind as QueryKindTrait<Value, OnEmpty>>::Querywhere
KeyArg: EncodeLike<Key>,
Load the value associated with the given key from the map.
sourcepub fn try_get<KeyArg>(key: KeyArg) -> Result<Value, ()>where
KeyArg: EncodeLike<Key>,
pub fn try_get<KeyArg>(key: KeyArg) -> Result<Value, ()>where
KeyArg: EncodeLike<Key>,
Try to get the value for the given key from the map.
Returns Ok
if it exists, Err
if not.
sourcepub fn swap<KeyArg1, KeyArg2>(key1: KeyArg1, key2: KeyArg2)where
KeyArg1: EncodeLike<Key>,
KeyArg2: EncodeLike<Key>,
pub fn swap<KeyArg1, KeyArg2>(key1: KeyArg1, key2: KeyArg2)where
KeyArg1: EncodeLike<Key>,
KeyArg2: EncodeLike<Key>,
Swap the values of two keys.
sourcepub fn set<KeyArg>(
key: KeyArg,
q: <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query,
)where
KeyArg: EncodeLike<Key>,
pub fn set<KeyArg>(
key: KeyArg,
q: <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query,
)where
KeyArg: EncodeLike<Key>,
Store or remove the value to be associated with key
so that get
returns the query
.
sourcepub fn insert<KeyArg, ValArg>(key: KeyArg, val: ValArg)where
KeyArg: EncodeLike<Key>,
ValArg: EncodeLike<Value>,
pub fn insert<KeyArg, ValArg>(key: KeyArg, val: ValArg)where
KeyArg: EncodeLike<Key>,
ValArg: EncodeLike<Value>,
Store a value to be associated with the given key from the map.
sourcepub fn remove<KeyArg>(key: KeyArg)where
KeyArg: EncodeLike<Key>,
pub fn remove<KeyArg>(key: KeyArg)where
KeyArg: EncodeLike<Key>,
Remove the value under a key.
sourcepub fn mutate<KeyArg, R, F>(key: KeyArg, f: F) -> Rwhere
KeyArg: EncodeLike<Key>,
F: FnOnce(&mut <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query) -> R,
pub fn mutate<KeyArg, R, F>(key: KeyArg, f: F) -> Rwhere
KeyArg: EncodeLike<Key>,
F: FnOnce(&mut <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query) -> R,
Mutate the value under a key.
sourcepub fn try_mutate<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>where
KeyArg: EncodeLike<Key>,
F: FnOnce(&mut <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query) -> Result<R, E>,
pub fn try_mutate<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>where
KeyArg: EncodeLike<Key>,
F: FnOnce(&mut <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query) -> Result<R, E>,
Mutate the item, only if an Ok
value is returned.
sourcepub fn mutate_extant<KeyArg, R, F>(key: KeyArg, f: F) -> R
pub fn mutate_extant<KeyArg, R, F>(key: KeyArg, f: F) -> R
Mutate the value under a key iff it exists. Do nothing and return the default value if not.
sourcepub fn mutate_exists<KeyArg, R, F>(key: KeyArg, f: F) -> R
pub fn mutate_exists<KeyArg, R, F>(key: KeyArg, f: F) -> R
Mutate the value under a key. Deletes the item if mutated to a None
.
sourcepub fn try_mutate_exists<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>
pub fn try_mutate_exists<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>
Mutate the item, only if an Ok
value is returned. Deletes the item if mutated to a None
.
f
will always be called with an option representing if the storage item exists (Some<V>
)
or if the storage item does not exist (None
), independent of the QueryType
.
sourcepub fn take<KeyArg>(
key: KeyArg,
) -> <QueryKind as QueryKindTrait<Value, OnEmpty>>::Querywhere
KeyArg: EncodeLike<Key>,
pub fn take<KeyArg>(
key: KeyArg,
) -> <QueryKind as QueryKindTrait<Value, OnEmpty>>::Querywhere
KeyArg: EncodeLike<Key>,
Take the value under a key.
sourcepub fn append<Item, EncodeLikeItem, EncodeLikeKey>(
key: EncodeLikeKey,
item: EncodeLikeItem,
)where
EncodeLikeKey: EncodeLike<Key>,
Item: Encode,
EncodeLikeItem: EncodeLike<Item>,
Value: StorageAppend<Item>,
pub fn append<Item, EncodeLikeItem, EncodeLikeKey>(
key: EncodeLikeKey,
item: EncodeLikeItem,
)where
EncodeLikeKey: EncodeLike<Key>,
Item: Encode,
EncodeLikeItem: EncodeLike<Item>,
Value: StorageAppend<Item>,
Append the given items to the value in the storage.
Value
is required to implement codec::EncodeAppend
.
§Warning
If the storage item is not encoded properly, the storage will be overwritten
and set to [item]
. Any default value set for the storage item will be ignored
on overwrite.
sourcepub fn decode_len<KeyArg>(key: KeyArg) -> Option<usize>where
KeyArg: EncodeLike<Key>,
Value: StorageDecodeLength,
pub fn decode_len<KeyArg>(key: KeyArg) -> Option<usize>where
KeyArg: EncodeLike<Key>,
Value: StorageDecodeLength,
Read the length of the storage value without decoding the entire value under the
given key
.
Value
is required to implement StorageDecodeLength
.
If the value does not exists or it fails to decode the length, None
is returned.
Otherwise Some(len)
is returned.
§Warning
None
does not mean that get()
does not return a value. The default value is completely
ignored by this function.
sourcepub fn decode_non_dedup_len<KeyArg>(key: KeyArg) -> Option<usize>where
KeyArg: EncodeLike<Key>,
Value: StorageDecodeNonDedupLength,
pub fn decode_non_dedup_len<KeyArg>(key: KeyArg) -> Option<usize>where
KeyArg: EncodeLike<Key>,
Value: StorageDecodeNonDedupLength,
Read the length of the storage value without decoding the entire value.
Value
is required to implement StorageDecodeNonDedupLength
.
If the value does not exists or it fails to decode the length, None
is returned.
Otherwise Some(len)
is returned.
§Warning
-
None
does not mean thatget()
does not return a value. The default value is completely ignored by this function. -
The value returned is the non-deduplicated length of the underlying Vector in storage.This means that any duplicate items are included.
sourcepub fn migrate_key<OldHasher, KeyArg>(key: KeyArg) -> Option<Value>where
OldHasher: StorageHasher,
KeyArg: EncodeLike<Key>,
pub fn migrate_key<OldHasher, KeyArg>(key: KeyArg) -> Option<Value>where
OldHasher: StorageHasher,
KeyArg: EncodeLike<Key>,
Migrate an item with the given key
from a defunct OldHasher
to the current hasher.
If the key doesn’t exist, then it’s a no-op. If it does, then it returns its value.
sourcepub fn remove_all(limit: Option<u32>) -> KillStorageResult
👎Deprecated: Use clear
instead
pub fn remove_all(limit: Option<u32>) -> KillStorageResult
clear
insteadRemove all values of the storage in the overlay and up to limit
in the backend.
All values in the client overlay will be deleted, if there is some limit
then up to
limit
values are deleted from the client backend, if limit
is none then all values in
the client backend are deleted.
§Note
Calling this multiple times per block with a limit
set leads always to the same keys being
removed and the same result being returned. This happens because the keys to delete in the
overlay are not taken into account when deleting keys in the backend.
sourcepub fn clear(limit: u32, maybe_cursor: Option<&[u8]>) -> MultiRemovalResults
pub fn clear(limit: u32, maybe_cursor: Option<&[u8]>) -> MultiRemovalResults
Attempt to remove all items from the map.
Returns MultiRemovalResults
to inform about the result. Once
the resultant maybe_cursor
field is None
, then no further items remain to be deleted.
NOTE: After the initial call for any given map, it is important that no further items
are inserted into the map. If so, then the map may not be empty when the resultant
maybe_cursor
is None
.
§Limit
A limit
must always be provided through in order to cap the maximum
amount of deletions done in a single call. This is one fewer than the
maximum number of backend iterations which may be done by this operation and as such
represents the maximum number of backend deletions which may happen. A limit
of zero
implies that no keys will be deleted, though there may be a single iteration done.
§Cursor
A cursor may be passed in to this operation with maybe_cursor
. None
should only be
passed once (in the initial call) for any given storage map. Subsequent calls
operating on the same map should always pass Some
, and this should be equal to the
previous call result’s maybe_cursor
field.
sourcepub fn iter_values() -> PrefixIterator<Value>
pub fn iter_values() -> PrefixIterator<Value>
Iter over all value of the storage.
NOTE: If a value failed to decode because storage is corrupted then it is skipped.
sourcepub fn translate_values<OldValue, F>(f: F)
pub fn translate_values<OldValue, F>(f: F)
Translate the values of all elements by a function f
, in the map in no particular order.
By returning None
from f
for an element, you’ll remove it from the map.
NOTE: If a value fail to decode because storage is corrupted then it is skipped.
§Warning
This function must be used with care, before being updated the storage still contains the
old type, thus other calls (such as get
) will fail at decoding it.
§Usage
This would typically be called inside the module implementation of on_runtime_upgrade.
sourcepub fn try_append<KArg, Item, EncodeLikeItem>(
key: KArg,
item: EncodeLikeItem,
) -> Result<(), ()>where
KArg: EncodeLike<Key> + Clone,
Item: Encode,
EncodeLikeItem: EncodeLike<Item>,
Value: StorageTryAppend<Item>,
pub fn try_append<KArg, Item, EncodeLikeItem>(
key: KArg,
item: EncodeLikeItem,
) -> Result<(), ()>where
KArg: EncodeLike<Key> + Clone,
Item: Encode,
EncodeLikeItem: EncodeLike<Item>,
Value: StorageTryAppend<Item>,
Try and append the given item to the value in the storage.
Is only available if Value
of the storage implements StorageTryAppend
.
source§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher + ReversibleStorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher + ReversibleStorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query> + 'static,
MaxValues: Get<Option<u32>>,
sourcepub fn iter() -> PrefixIterator<(Key, Value)>
pub fn iter() -> PrefixIterator<(Key, Value)>
Enumerate all elements in the map in no particular order.
If you alter the map while doing this, you’ll get undefined results.
sourcepub fn iter_from(starting_raw_key: Vec<u8>) -> PrefixIterator<(Key, Value)>
pub fn iter_from(starting_raw_key: Vec<u8>) -> PrefixIterator<(Key, Value)>
Enumerate all elements in the map after a specified starting_raw_key
in no
particular order.
If you alter the map while doing this, you’ll get undefined results.
sourcepub fn iter_from_key(
starting_key: impl EncodeLike<Key>,
) -> PrefixIterator<(Key, Value)>
pub fn iter_from_key( starting_key: impl EncodeLike<Key>, ) -> PrefixIterator<(Key, Value)>
Enumerate all elements in the map after a specified starting_key
in no
particular order.
If you alter the map while doing this, you’ll get undefined results.
sourcepub fn iter_keys() -> KeyPrefixIterator<Key>
pub fn iter_keys() -> KeyPrefixIterator<Key>
Enumerate all keys in the map in no particular order.
If you alter the map while doing this, you’ll get undefined results.
sourcepub fn iter_keys_from(starting_raw_key: Vec<u8>) -> KeyPrefixIterator<Key>
pub fn iter_keys_from(starting_raw_key: Vec<u8>) -> KeyPrefixIterator<Key>
Enumerate all keys in the map after a specified starting_raw_key
in no particular
order.
If you alter the map while doing this, you’ll get undefined results.
sourcepub fn iter_keys_from_key(
starting_key: impl EncodeLike<Key>,
) -> KeyPrefixIterator<Key>
pub fn iter_keys_from_key( starting_key: impl EncodeLike<Key>, ) -> KeyPrefixIterator<Key>
Enumerate all keys in the map after a specified starting_key
in no particular
order.
If you alter the map while doing this, you’ll get undefined results.
sourcepub fn drain() -> PrefixIterator<(Key, Value)>
pub fn drain() -> PrefixIterator<(Key, Value)>
Remove all elements from the map and iterate through them in no particular order.
If you add elements to the map while doing this, you’ll get undefined results.
sourcepub fn translate<O, F>(f: F)
pub fn translate<O, F>(f: F)
Translate the values of all elements by a function f
, in the map in no particular order.
By returning None
from f
for an element, you’ll remove it from the map.
NOTE: If a value fails to decode because storage is corrupted, then it will log an error and be skipped in production, or panic in development.
Trait Implementations
source§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> PartialStorageInfoTrait for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> PartialStorageInfoTrait for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query> + 'static,
MaxValues: Get<Option<u32>>,
It doesn’t require to implement MaxEncodedLen
and give no information for max_size
.
fn partial_storage_info() -> Vec<StorageInfo>
source§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageEntryMetadataBuilder for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec + StaticTypeInfo,
Value: FullCodec + StaticTypeInfo,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageEntryMetadataBuilder for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec + StaticTypeInfo,
Value: FullCodec + StaticTypeInfo,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query> + 'static,
MaxValues: Get<Option<u32>>,
source§fn build_metadata(
deprecation_status: DeprecationStatusIR,
docs: Vec<&'static str>,
entries: &mut Vec<StorageEntryMetadataIR>,
)
fn build_metadata( deprecation_status: DeprecationStatusIR, docs: Vec<&'static str>, entries: &mut Vec<StorageEntryMetadataIR>, )
entries
the storage metadata entries of a storage given some docs
.source§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageInfoTrait for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec + MaxEncodedLen,
Value: FullCodec + MaxEncodedLen,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageInfoTrait for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec + MaxEncodedLen,
Value: FullCodec + MaxEncodedLen,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query> + 'static,
MaxValues: Get<Option<u32>>,
fn storage_info() -> Vec<StorageInfo>
source§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StoragePrefixedMap<Value> for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StoragePrefixedMap<Value> for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query> + 'static,
MaxValues: Get<Option<u32>>,
source§fn pallet_prefix() -> &'static [u8] ⓘ
fn pallet_prefix() -> &'static [u8] ⓘ
source§fn storage_prefix() -> &'static [u8] ⓘ
fn storage_prefix() -> &'static [u8] ⓘ
source§fn final_prefix() -> [u8; 32]
fn final_prefix() -> [u8; 32]
source§fn remove_all(limit: Option<u32>) -> KillStorageResult
fn remove_all(limit: Option<u32>) -> KillStorageResult
clear
insteadlimit
in the backend. Read moresource§fn clear(limit: u32, maybe_cursor: Option<&[u8]>) -> MultiRemovalResults
fn clear(limit: u32, maybe_cursor: Option<&[u8]>) -> MultiRemovalResults
source§fn iter_values() -> PrefixIterator<Value>
fn iter_values() -> PrefixIterator<Value>
source§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> TryDecodeEntireStorage for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> TryDecodeEntireStorage for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query> + 'static,
MaxValues: Get<Option<u32>>,
source§fn try_decode_entire_state() -> Result<usize, Vec<TryDecodeEntireStorageError>>
fn try_decode_entire_state() -> Result<usize, Vec<TryDecodeEntireStorageError>>
Ok(bytes_decoded)
if success.