Struct pallet_roles::storage::types::StorageNMap   
pub struct StorageNMap<Prefix, Key, Value, QueryKind = OptionQuery, OnEmpty = GetDefault, MaxValues = GetDefault>(_);Expand description
A type that allow to store values for an arbitrary number of keys in the form of
(Key<Hasher1, key1>, Key<Hasher2, key2>, ..., Key<HasherN, keyN>).
Each value is stored at:
Twox128(Prefix::pallet_prefix())
		++ Twox128(Prefix::STORAGE_PREFIX)
		++ Hasher1(encode(key1))
		++ Hasher2(encode(key2))
	++ ...
	++ HasherN(encode(keyN))Warning
If the keys are not trusted (e.g. can be set by a user), a cryptographic hasher
such as blake2_128_concat must be used for the key hashers. Otherwise, other values
in storage can be compromised.
Implementations§
§impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Prefix: StorageInstance,
    Key: KeyGenerator,
    Value: FullCodec,
    QueryKind: QueryKindTrait<Value, OnEmpty>,
    OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
    MaxValues: Get<Option<u32>>,
 
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Prefix: StorageInstance,
    Key: KeyGenerator,
    Value: FullCodec,
    QueryKind: QueryKindTrait<Value, OnEmpty>,
    OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
    MaxValues: Get<Option<u32>>,
pub fn hashed_key_for<KArg>(key: KArg) -> Vec<u8, Global> ⓘwhere
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
pub fn hashed_key_for<KArg>(key: KArg) -> Vec<u8, Global> ⓘwhere
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
Get the storage key used to fetch a value corresponding to a specific key.
pub fn contains_key<KArg>(key: KArg) -> boolwhere
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
pub fn contains_key<KArg>(key: KArg) -> boolwhere
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
Does the value (explicitly) exist in storage?
pub fn get<KArg>(
    key: KArg
) -> <QueryKind as QueryKindTrait<Value, OnEmpty>>::Querywhere
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
pub fn get<KArg>(
    key: KArg
) -> <QueryKind as QueryKindTrait<Value, OnEmpty>>::Querywhere
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
Load the value associated with the given key from the map.
pub fn try_get<KArg>(key: KArg) -> Result<Value, ()>where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
pub fn try_get<KArg>(key: KArg) -> Result<Value, ()>where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
Try to get the value for the given key from the map.
Returns Ok if it exists, Err if not.
pub fn set<KArg>(
    key: KArg,
    query: <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query
)where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
pub fn set<KArg>(
    key: KArg,
    query: <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query
)where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
Store or remove the value to be associated with key so that get returns the query.
pub fn take<KArg>(
    key: KArg
) -> <QueryKind as QueryKindTrait<Value, OnEmpty>>::Querywhere
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
pub fn take<KArg>(
    key: KArg
) -> <QueryKind as QueryKindTrait<Value, OnEmpty>>::Querywhere
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
Take a value from storage, removing it afterwards.
pub fn swap<KOther, KArg1, KArg2>(key1: KArg1, key2: KArg2)where
    KOther: KeyGenerator,
    KArg1: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    KArg2: EncodeLikeTuple<<KOther as KeyGenerator>::KArg> + TupleToEncodedIter,
pub fn swap<KOther, KArg1, KArg2>(key1: KArg1, key2: KArg2)where
    KOther: KeyGenerator,
    KArg1: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    KArg2: EncodeLikeTuple<<KOther as KeyGenerator>::KArg> + TupleToEncodedIter,
Swap the values of two key-pairs.
pub fn insert<KArg, VArg>(key: KArg, val: VArg)where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    VArg: EncodeLike<Value>,
pub fn insert<KArg, VArg>(key: KArg, val: VArg)where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    VArg: EncodeLike<Value>,
Store a value to be associated with the given keys from the map.
pub fn remove<KArg>(key: KArg)where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
pub fn remove<KArg>(key: KArg)where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
Remove the value under the given keys.
pub fn remove_prefix<KP>(
    partial_key: KP,
    limit: Option<u32>
) -> KillStorageResultwhere
    Key: HasKeyPrefix<KP>,
clear_prefix instead
pub fn remove_prefix<KP>(
    partial_key: KP,
    limit: Option<u32>
) -> KillStorageResultwhere
    Key: HasKeyPrefix<KP>,
clear_prefix insteadRemove all values starting with partial_key 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.
pub fn clear_prefix<KP>(
    partial_key: KP,
    limit: u32,
    maybe_cursor: Option<&[u8]>
) -> MultiRemovalResultswhere
    Key: HasKeyPrefix<KP>,
pub fn clear_prefix<KP>(
    partial_key: KP,
    limit: u32,
    maybe_cursor: Option<&[u8]>
) -> MultiRemovalResultswhere
    Key: HasKeyPrefix<KP>,
Attempt to remove items from the map matching a partial_key prefix.
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 which match the partial key. If so, then the map may not be
empty when the resultant maybe_cursor is None.
Limit
A limit must be provided 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 and partial_key. Subsequent
calls operating on the same map/partial_key should always pass Some, and this should be
equal to the previous call result’s maybe_cursor field.
pub fn iter_prefix_values<KP>(partial_key: KP) -> PrefixIterator<Value, ()> ⓘwhere
    Key: HasKeyPrefix<KP>,
pub fn iter_prefix_values<KP>(partial_key: KP) -> PrefixIterator<Value, ()> ⓘwhere
    Key: HasKeyPrefix<KP>,
Iterate over values that share the first key.
pub fn mutate<KArg, R, F>(key: KArg, f: F) -> Rwhere
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query) -> R,
pub fn mutate<KArg, R, F>(key: KArg, f: F) -> Rwhere
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query) -> R,
Mutate the value under the given keys.
pub fn try_mutate<KArg, R, E, F>(key: KArg, f: F) -> Result<R, E>where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query) -> Result<R, E>,
pub fn try_mutate<KArg, R, E, F>(key: KArg, f: F) -> Result<R, E>where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query) -> Result<R, E>,
Mutate the value under the given keys when the closure returns Ok.
pub fn mutate_exists<KArg, R, F>(key: KArg, f: F) -> Rwhere
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut Option<Value>) -> R,
pub fn mutate_exists<KArg, R, F>(key: KArg, f: F) -> Rwhere
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut Option<Value>) -> R,
Mutate the value under the given keys. Deletes the item if mutated to a None.
pub fn try_mutate_exists<KArg, R, E, F>(key: KArg, f: F) -> Result<R, E>where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut Option<Value>) -> Result<R, E>,
pub fn try_mutate_exists<KArg, R, E, F>(key: KArg, f: F) -> Result<R, E>where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut Option<Value>) -> 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.
pub fn append<Item, EncodeLikeItem, KArg>(key: KArg, item: EncodeLikeItem)where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    Item: Encode,
    EncodeLikeItem: EncodeLike<Item>,
    Value: StorageAppend<Item>,
pub fn append<Item, EncodeLikeItem, KArg>(key: KArg, item: EncodeLikeItem)where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    Item: Encode,
    EncodeLikeItem: EncodeLike<Item>,
    Value: StorageAppend<Item>,
Append the given item to the value in the storage.
Value is required to implement StorageAppend.
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.
pub fn decode_len<KArg>(key: KArg) -> Option<usize>where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    Value: StorageDecodeLength,
pub fn decode_len<KArg>(key: KArg) -> Option<usize>where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
    Value: StorageDecodeLength,
Read the length of the storage value without decoding the entire value under the
given key1 and key2.
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 completly
ignored by this function.
pub fn migrate_keys<KArg>(
    key: KArg,
    hash_fns: <Key as KeyGenerator>::HArg
) -> Option<Value>where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
pub fn migrate_keys<KArg>(
    key: KArg,
    hash_fns: <Key as KeyGenerator>::HArg
) -> Option<Value>where
    KArg: EncodeLikeTuple<<Key as KeyGenerator>::KArg> + TupleToEncodedIter,
Migrate an item with the given key from defunct hash_fns to the current hashers.
If the key doesn’t exist, then it’s a no-op. If it does, then it returns its value.
pub fn remove_all(limit: Option<u32>) -> KillStorageResult
clear instead
pub fn remove_all(limit: Option<u32>) -> KillStorageResult
clear insteadRemove all values 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.
pub 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.
pub 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.
pub fn translate_values<OldValue, F>(f: F)where
    OldValue: Decode,
    F: FnMut(OldValue) -> Option<Value>,
pub fn translate_values<OldValue, F>(f: F)where
    OldValue: Decode,
    F: FnMut(OldValue) -> Option<Value>,
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.
§impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Prefix: StorageInstance,
    Key: ReversibleKeyGenerator,
    Value: FullCodec,
    QueryKind: QueryKindTrait<Value, OnEmpty>,
    OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
    MaxValues: Get<Option<u32>>,
 
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Prefix: StorageInstance,
    Key: ReversibleKeyGenerator,
    Value: FullCodec,
    QueryKind: QueryKindTrait<Value, OnEmpty>,
    OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
    MaxValues: Get<Option<u32>>,
pub fn iter_prefix<KP>(
    kp: KP
) -> PrefixIterator<(<Key as HasKeyPrefix<KP>>::Suffix, Value), ()> ⓘwhere
    Key: HasReversibleKeyPrefix<KP>,
pub fn iter_prefix<KP>(
    kp: KP
) -> PrefixIterator<(<Key as HasKeyPrefix<KP>>::Suffix, Value), ()> ⓘwhere
    Key: HasReversibleKeyPrefix<KP>,
Enumerate all elements in the map with prefix key kp in no particular order.
If you add or remove values whose prefix key is kp to the map while doing this, you’ll get
undefined results.
pub fn iter_prefix_from<KP>(
    kp: KP,
    starting_raw_key: Vec<u8, Global>
) -> PrefixIterator<(<Key as HasKeyPrefix<KP>>::Suffix, Value), ()> ⓘwhere
    Key: HasReversibleKeyPrefix<KP>,
pub fn iter_prefix_from<KP>(
    kp: KP,
    starting_raw_key: Vec<u8, Global>
) -> PrefixIterator<(<Key as HasKeyPrefix<KP>>::Suffix, Value), ()> ⓘwhere
    Key: HasReversibleKeyPrefix<KP>,
Enumerate all elements in the map with prefix key kp after a specified starting_raw_key
in no particular order.
If you add or remove values whose prefix key is kp to the map while doing this, you’ll get
undefined results.
pub fn iter_key_prefix<KP>(
    kp: KP
) -> KeyPrefixIterator<<Key as HasKeyPrefix<KP>>::Suffix> ⓘwhere
    Key: HasReversibleKeyPrefix<KP>,
pub fn iter_key_prefix<KP>(
    kp: KP
) -> KeyPrefixIterator<<Key as HasKeyPrefix<KP>>::Suffix> ⓘwhere
    Key: HasReversibleKeyPrefix<KP>,
Enumerate all suffix keys in the map with prefix key kp in no particular order.
If you add or remove values whose prefix key is kp to the map while doing this, you’ll get
undefined results.
pub fn iter_key_prefix_from<KP>(
    kp: KP,
    starting_raw_key: Vec<u8, Global>
) -> KeyPrefixIterator<<Key as HasKeyPrefix<KP>>::Suffix> ⓘwhere
    Key: HasReversibleKeyPrefix<KP>,
pub fn iter_key_prefix_from<KP>(
    kp: KP,
    starting_raw_key: Vec<u8, Global>
) -> KeyPrefixIterator<<Key as HasKeyPrefix<KP>>::Suffix> ⓘwhere
    Key: HasReversibleKeyPrefix<KP>,
Enumerate all suffix keys in the map with prefix key kp after a specified
starting_raw_key in no particular order.
If you add or remove values whose prefix key is kp to the map while doing this, you’ll get
undefined results.
pub fn drain_prefix<KP>(
    kp: KP
) -> PrefixIterator<(<Key as HasKeyPrefix<KP>>::Suffix, Value), ()> ⓘwhere
    Key: HasReversibleKeyPrefix<KP>,
pub fn drain_prefix<KP>(
    kp: KP
) -> PrefixIterator<(<Key as HasKeyPrefix<KP>>::Suffix, Value), ()> ⓘwhere
    Key: HasReversibleKeyPrefix<KP>,
Remove all elements from the map with prefix key kp and iterate through them in no
particular order.
If you add elements with prefix key k1 to the map while doing this, you’ll get undefined
results.
pub fn iter() -> PrefixIterator<(<Key as KeyGenerator>::Key, Value), ()> ⓘ
pub fn iter() -> PrefixIterator<(<Key as KeyGenerator>::Key, Value), ()> ⓘ
Enumerate all elements in the map in no particular order.
If you add or remove values to the map while doing this, you’ll get undefined results.
pub fn iter_from(
    starting_raw_key: Vec<u8, Global>
) -> PrefixIterator<(<Key as KeyGenerator>::Key, Value), ()> ⓘ
pub fn iter_from(
    starting_raw_key: Vec<u8, Global>
) -> PrefixIterator<(<Key as KeyGenerator>::Key, Value), ()> ⓘ
Enumerate all elements in the map after a specified starting_key in no particular order.
If you add or remove values to the map while doing this, you’ll get undefined results.
pub fn iter_keys() -> KeyPrefixIterator<<Key as KeyGenerator>::Key> ⓘ
pub fn iter_keys() -> KeyPrefixIterator<<Key as KeyGenerator>::Key> ⓘ
Enumerate all keys in the map in no particular order.
If you add or remove values to the map while doing this, you’ll get undefined results.
pub fn iter_keys_from(
    starting_raw_key: Vec<u8, Global>
) -> KeyPrefixIterator<<Key as KeyGenerator>::Key> ⓘ
pub fn iter_keys_from(
    starting_raw_key: Vec<u8, Global>
) -> KeyPrefixIterator<<Key as KeyGenerator>::Key> ⓘ
Enumerate all keys in the map after a specified starting_raw_key in no particular order.
If you add or remove values to the map while doing this, you’ll get undefined results.
pub fn drain() -> PrefixIterator<(<Key as KeyGenerator>::Key, Value), ()> ⓘ
pub fn drain() -> PrefixIterator<(<Key as KeyGenerator>::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.
pub fn translate<O, F>(f: F)where
    O: Decode,
    F: FnMut(<Key as KeyGenerator>::Key, O) -> Option<Value>,
pub fn translate<O, F>(f: F)where
    O: Decode,
    F: FnMut(<Key as KeyGenerator>::Key, O) -> Option<Value>,
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.
Trait Implementations§
§impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> PartialStorageInfoTrait for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Prefix: StorageInstance,
    Key: KeyGenerator,
    Value: FullCodec,
    QueryKind: QueryKindTrait<Value, OnEmpty>,
    OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
    MaxValues: Get<Option<u32>>,
 
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> PartialStorageInfoTrait for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Prefix: StorageInstance,
    Key: KeyGenerator,
    Value: FullCodec,
    QueryKind: QueryKindTrait<Value, OnEmpty>,
    OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
    MaxValues: Get<Option<u32>>,
It doesn’t require to implement MaxEncodedLen and give no information for max_size.
fn partial_storage_info() -> Vec<StorageInfo, Global> ⓘ
§impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> StorageEntryMetadataBuilder for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Prefix: StorageInstance,
    Key: KeyGenerator,
    Value: FullCodec + StaticTypeInfo,
    QueryKind: QueryKindTrait<Value, OnEmpty>,
    OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
    MaxValues: Get<Option<u32>>,
 
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> StorageEntryMetadataBuilder for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Prefix: StorageInstance,
    Key: KeyGenerator,
    Value: FullCodec + StaticTypeInfo,
    QueryKind: QueryKindTrait<Value, OnEmpty>,
    OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
    MaxValues: Get<Option<u32>>,
§impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> StorageInfoTrait for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Prefix: StorageInstance,
    Key: KeyGenerator + KeyGeneratorMaxEncodedLen,
    Value: FullCodec + MaxEncodedLen,
    QueryKind: QueryKindTrait<Value, OnEmpty>,
    OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
    MaxValues: Get<Option<u32>>,
 
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> StorageInfoTrait for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Prefix: StorageInstance,
    Key: KeyGenerator + KeyGeneratorMaxEncodedLen,
    Value: FullCodec + MaxEncodedLen,
    QueryKind: QueryKindTrait<Value, OnEmpty>,
    OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
    MaxValues: Get<Option<u32>>,
fn storage_info() -> Vec<StorageInfo, Global> ⓘ
§impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> StoragePrefixedMap<Value> for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Prefix: StorageInstance,
    Key: KeyGenerator,
    Value: FullCodec,
    QueryKind: QueryKindTrait<Value, OnEmpty>,
    OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
    MaxValues: Get<Option<u32>>,
 
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> StoragePrefixedMap<Value> for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Prefix: StorageInstance,
    Key: KeyGenerator,
    Value: FullCodec,
    QueryKind: QueryKindTrait<Value, OnEmpty>,
    OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
    MaxValues: Get<Option<u32>>,
§fn module_prefix() -> &'static [u8] ⓘ
 
fn module_prefix() -> &'static [u8] ⓘ
§fn storage_prefix() -> &'static [u8] ⓘ
 
fn storage_prefix() -> &'static [u8] ⓘ
§fn final_prefix() -> [u8; 32]
 
fn final_prefix() -> [u8; 32]
§fn remove_all(limit: Option<u32>) -> KillStorageResult
 
fn remove_all(limit: Option<u32>) -> KillStorageResult
clear insteadlimit in the backend. Read more§fn clear(limit: u32, maybe_cursor: Option<&[u8]>) -> MultiRemovalResults
 
fn clear(limit: u32, maybe_cursor: Option<&[u8]>) -> MultiRemovalResults
§fn iter_values() -> PrefixIterator<Value, ()> ⓘ
 
fn iter_values() -> PrefixIterator<Value, ()> ⓘ
Auto Trait Implementations§
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> RefUnwindSafe for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Key: RefUnwindSafe,
    MaxValues: RefUnwindSafe,
    OnEmpty: RefUnwindSafe,
    Prefix: RefUnwindSafe,
    QueryKind: RefUnwindSafe,
    Value: RefUnwindSafe,
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> Send for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Key: Send,
    MaxValues: Send,
    OnEmpty: Send,
    Prefix: Send,
    QueryKind: Send,
    Value: Send,
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> Sync for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Key: Sync,
    MaxValues: Sync,
    OnEmpty: Sync,
    Prefix: Sync,
    QueryKind: Sync,
    Value: Sync,
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> Unpin for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Key: Unpin,
    MaxValues: Unpin,
    OnEmpty: Unpin,
    Prefix: Unpin,
    QueryKind: Unpin,
    Value: Unpin,
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> UnwindSafe for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
    Key: UnwindSafe,
    MaxValues: UnwindSafe,
    OnEmpty: UnwindSafe,
    Prefix: UnwindSafe,
    QueryKind: UnwindSafe,
    Value: UnwindSafe,
Blanket Implementations§
§impl<T> CheckedConversion for T
 
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
    Self: TryFrom<T>,
 
fn checked_from<T>(t: T) -> Option<Self>where
    Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
    Self: TryInto<T>,
 
fn checked_into<T>(self) -> Option<T>where
    Self: TryInto<T>,
§impl<T> Downcast for Twhere
    T: Any,
 
impl<T> Downcast for Twhere
    T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
 
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
 
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more§fn as_any(&self) -> &(dyn Any + 'static)
 
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s. Read more§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
 
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s. Read moresource§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
§impl<K, V, G> IterableStorageNMap<K, V> for Gwhere
    K: ReversibleKeyGenerator,
    V: FullCodec,
    G: StorageNMap<K, V>,
 
impl<K, V, G> IterableStorageNMap<K, V> for Gwhere
    K: ReversibleKeyGenerator,
    V: FullCodec,
    G: StorageNMap<K, V>,
§type KeyIterator = KeyPrefixIterator<<K as KeyGenerator>::Key>
 
type KeyIterator = KeyPrefixIterator<<K as KeyGenerator>::Key>
(key1, key2, key3, ... keyN) tuples.§type Iterator = PrefixIterator<(<K as KeyGenerator>::Key, V), ()>
 
type Iterator = PrefixIterator<(<K as KeyGenerator>::Key, V), ()>
(key1, key2, key3, ... keyN), value) tuples.§fn iter_prefix<KP>(
    kp: KP
) -> PrefixIterator<(<K as HasKeyPrefix<KP>>::Suffix, V), ()> ⓘwhere
    K: HasReversibleKeyPrefix<KP>,
 
fn iter_prefix<KP>(
    kp: KP
) -> PrefixIterator<(<K as HasKeyPrefix<KP>>::Suffix, V), ()> ⓘwhere
    K: HasReversibleKeyPrefix<KP>,
kp in lexicographical order of the
encoded key. If you add or remove values whose prefix is kp to the map while doing this,
you’ll get undefined results. Read more§fn iter_prefix_from<KP>(
    kp: KP,
    starting_raw_key: Vec<u8, Global>
) -> PrefixIterator<(<K as HasKeyPrefix<KP>>::Suffix, V), ()> ⓘwhere
    K: HasReversibleKeyPrefix<KP>,
 
fn iter_prefix_from<KP>(
    kp: KP,
    starting_raw_key: Vec<u8, Global>
) -> PrefixIterator<(<K as HasKeyPrefix<KP>>::Suffix, V), ()> ⓘwhere
    K: HasReversibleKeyPrefix<KP>,
kp after a specified starting_raw_key
in lexicographical order of the encoded key. If you add or remove values whose prefix is
kp to the map while doing this, you’ll get undefined results. Read more§fn iter_key_prefix<KP>(
    kp: KP
) -> KeyPrefixIterator<<K as HasKeyPrefix<KP>>::Suffix> ⓘwhere
    K: HasReversibleKeyPrefix<KP>,
 
fn iter_key_prefix<KP>(
    kp: KP
) -> KeyPrefixIterator<<K as HasKeyPrefix<KP>>::Suffix> ⓘwhere
    K: HasReversibleKeyPrefix<KP>,
kp in lexicographical order of the
encoded key. If you add or remove values whose prefix is kp to the map while doing this,
you’ll get undefined results. Read more§fn iter_key_prefix_from<KP>(
    kp: KP,
    starting_raw_key: Vec<u8, Global>
) -> KeyPrefixIterator<<K as HasKeyPrefix<KP>>::Suffix> ⓘwhere
    K: HasReversibleKeyPrefix<KP>,
 
fn iter_key_prefix_from<KP>(
    kp: KP,
    starting_raw_key: Vec<u8, Global>
) -> KeyPrefixIterator<<K as HasKeyPrefix<KP>>::Suffix> ⓘwhere
    K: HasReversibleKeyPrefix<KP>,
kp after a specified
starting_raw_key in lexicographical order of the encoded key. If you add or remove values
whose prefix is kp to the map while doing this, you’ll get undefined results. Read more§fn drain_prefix<KP>(
    kp: KP
) -> PrefixIterator<(<K as HasKeyPrefix<KP>>::Suffix, V), ()> ⓘwhere
    K: HasReversibleKeyPrefix<KP>,
 
fn drain_prefix<KP>(
    kp: KP
) -> PrefixIterator<(<K as HasKeyPrefix<KP>>::Suffix, V), ()> ⓘwhere
    K: HasReversibleKeyPrefix<KP>,
kp and iterate through them in
lexicographical order of the encoded key. If you add elements with prefix key kp to the
map while doing this, you’ll get undefined results. Read more§fn iter() -> <G as IterableStorageNMap<K, V>>::Iterator
 
fn iter() -> <G as IterableStorageNMap<K, V>>::Iterator
§fn iter_from(
    starting_raw_key: Vec<u8, Global>
) -> <G as IterableStorageNMap<K, V>>::Iterator
 
fn iter_from(
    starting_raw_key: Vec<u8, Global>
) -> <G as IterableStorageNMap<K, V>>::Iterator
starting_raw_key in lexicographical
order of the encoded key. If you add or remove values to the map while doing this, you’ll
get undefined results. Read more§fn iter_keys() -> <G as IterableStorageNMap<K, V>>::KeyIterator
 
fn iter_keys() -> <G as IterableStorageNMap<K, V>>::KeyIterator
§fn iter_keys_from(
    starting_raw_key: Vec<u8, Global>
) -> <G as IterableStorageNMap<K, V>>::KeyIterator
 
fn iter_keys_from(
    starting_raw_key: Vec<u8, Global>
) -> <G as IterableStorageNMap<K, V>>::KeyIterator
starting_raw_key in lexicographical order of the
encoded key. If you add or remove values to the map while doing this, you’ll get undefined
results. Read more§fn drain() -> <G as IterableStorageNMap<K, V>>::Iterator
 
fn drain() -> <G as IterableStorageNMap<K, V>>::Iterator
§impl<T> Pointable for T
 
impl<T> Pointable for T
§impl<T> SaturatedConversion for T
 
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
    Self: UniqueSaturatedFrom<T>,
 
fn saturated_from<T>(t: T) -> Selfwhere
    Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
    Self: UniqueSaturatedInto<T>,
 
fn saturated_into<T>(self) -> Twhere
    Self: UniqueSaturatedInto<T>,
T. Read more§impl<K, V, G> StorageNMap<K, V> for Gwhere
    K: KeyGenerator,
    V: FullCodec,
    G: StorageNMap<K, V>,
 
impl<K, V, G> StorageNMap<K, V> for Gwhere
    K: KeyGenerator,
    V: FullCodec,
    G: StorageNMap<K, V>,
§fn hashed_key_for<KArg>(key: KArg) -> Vec<u8, Global> ⓘwhere
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
 
fn hashed_key_for<KArg>(key: KArg) -> Vec<u8, Global> ⓘwhere
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
§fn contains_key<KArg>(key: KArg) -> boolwhere
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
 
fn contains_key<KArg>(key: KArg) -> boolwhere
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
§fn get<KArg>(key: KArg) -> <G as StorageNMap<K, V>>::Querywhere
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
 
fn get<KArg>(key: KArg) -> <G as StorageNMap<K, V>>::Querywhere
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
§fn try_get<KArg>(key: KArg) -> Result<V, ()>where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
 
fn try_get<KArg>(key: KArg) -> Result<V, ()>where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
§fn set<KArg>(key: KArg, q: <G as StorageNMap<K, V>>::Query)where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
 
fn set<KArg>(key: KArg, q: <G as StorageNMap<K, V>>::Query)where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
key so that get returns the query.§fn take<KArg>(key: KArg) -> <G as StorageNMap<K, V>>::Querywhere
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
 
fn take<KArg>(key: KArg) -> <G as StorageNMap<K, V>>::Querywhere
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
§fn swap<KOther, KArg1, KArg2>(key1: KArg1, key2: KArg2)where
    KOther: KeyGenerator,
    KArg1: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    KArg2: EncodeLikeTuple<<KOther as KeyGenerator>::KArg> + TupleToEncodedIter,
 
fn swap<KOther, KArg1, KArg2>(key1: KArg1, key2: KArg2)where
    KOther: KeyGenerator,
    KArg1: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    KArg2: EncodeLikeTuple<<KOther as KeyGenerator>::KArg> + TupleToEncodedIter,
§fn insert<KArg, VArg>(key: KArg, val: VArg)where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    VArg: EncodeLike<V>,
 
fn insert<KArg, VArg>(key: KArg, val: VArg)where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    VArg: EncodeLike<V>,
§fn remove<KArg>(key: KArg)where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
 
fn remove<KArg>(key: KArg)where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
§fn remove_prefix<KP>(partial_key: KP, limit: Option<u32>) -> KillStorageResultwhere
    K: HasKeyPrefix<KP>,
 
fn remove_prefix<KP>(partial_key: KP, limit: Option<u32>) -> KillStorageResultwhere
    K: HasKeyPrefix<KP>,
clear_prefix insteadpartial_key in the overlay and up to limit in the
backend. Read more§fn clear_prefix<KP>(
    partial_key: KP,
    limit: u32,
    maybe_cursor: Option<&[u8]>
) -> MultiRemovalResultswhere
    K: HasKeyPrefix<KP>,
 
fn clear_prefix<KP>(
    partial_key: KP,
    limit: u32,
    maybe_cursor: Option<&[u8]>
) -> MultiRemovalResultswhere
    K: HasKeyPrefix<KP>,
partial_key prefix. Read more§fn iter_prefix_values<KP>(partial_key: KP) -> PrefixIterator<V, ()> ⓘwhere
    K: HasKeyPrefix<KP>,
 
fn iter_prefix_values<KP>(partial_key: KP) -> PrefixIterator<V, ()> ⓘwhere
    K: HasKeyPrefix<KP>,
§fn mutate<KArg, R, F>(key: KArg, f: F) -> Rwhere
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut <G as StorageNMap<K, V>>::Query) -> R,
 
fn mutate<KArg, R, F>(key: KArg, f: F) -> Rwhere
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut <G as StorageNMap<K, V>>::Query) -> R,
§fn try_mutate<KArg, R, E, F>(key: KArg, f: F) -> Result<R, E>where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut <G as StorageNMap<K, V>>::Query) -> Result<R, E>,
 
fn try_mutate<KArg, R, E, F>(key: KArg, f: F) -> Result<R, E>where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut <G as StorageNMap<K, V>>::Query) -> Result<R, E>,
Ok value is returned.§fn mutate_exists<KArg, R, F>(key: KArg, f: F) -> Rwhere
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut Option<V>) -> R,
 
fn mutate_exists<KArg, R, F>(key: KArg, f: F) -> Rwhere
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut Option<V>) -> R,
§fn try_mutate_exists<KArg, R, E, F>(key: KArg, f: F) -> Result<R, E>where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut Option<V>) -> Result<R, E>,
 
fn try_mutate_exists<KArg, R, E, F>(key: KArg, f: F) -> Result<R, E>where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    F: FnOnce(&mut Option<V>) -> Result<R, E>,
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. Read more§fn append<Item, EncodeLikeItem, KArg>(key: KArg, item: EncodeLikeItem)where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    Item: Encode,
    EncodeLikeItem: EncodeLike<Item>,
    V: StorageAppend<Item>,
 
fn append<Item, EncodeLikeItem, KArg>(key: KArg, item: EncodeLikeItem)where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    Item: Encode,
    EncodeLikeItem: EncodeLike<Item>,
    V: StorageAppend<Item>,
§fn migrate_keys<KArg>(
    key: KArg,
    hash_fns: <K as KeyGenerator>::HArg
) -> Option<V>where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
 
fn migrate_keys<KArg>(
    key: KArg,
    hash_fns: <K as KeyGenerator>::HArg
) -> Option<V>where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
§fn decode_len<KArg>(key: KArg) -> Option<usize>where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    V: StorageDecodeLength,
 
fn decode_len<KArg>(key: KArg) -> Option<usize>where
    KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter,
    V: StorageDecodeLength,
key. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
    SS: SubsetOf<SP>,
 
impl<SS, SP> SupersetOf<SS> for SPwhere
    SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
 
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
 
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
 
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
 
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.§impl<S, T> UncheckedInto<T> for Swhere
    T: UncheckedFrom<S>,
 
impl<S, T> UncheckedInto<T> for Swhere
    T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
 
fn unchecked_into(self) -> T
unchecked_from.§impl<T, S> UniqueSaturatedInto<T> for Swhere
    T: Bounded,
    S: TryInto<T>,
 
impl<T, S> UniqueSaturatedInto<T> for Swhere
    T: Bounded,
    S: TryInto<T>,
§fn unique_saturated_into(self) -> T
 
fn unique_saturated_into(self) -> T
T.