pub struct StorageNMap<Prefix, Key, Value, QueryKind = OptionQuery, OnEmpty = GetDefault, MaxValues = GetDefault>(/* private fields */);
Expand description

A type representing an NMap in storage. This structure associates an arbitrary number of keys with a value of a specified type stored on-chain.

For example, StorageDoubleMap is a special case of an NMap with N = 2.

For general information regarding the #[pallet::storage] attribute, refer to crate::pallet_macros::storage.

§Example

#[frame_support::pallet]
mod pallet {
	/// A kitchen-sink StorageNMap, with all possible additional attributes.
    #[pallet::storage]
	#[pallet::getter(fn foo)]
	#[pallet::storage_prefix = "OtherFoo"]
	#[pallet::unbounded]
    pub type Foo<T> = StorageNMap<
		_,
		(
			NMapKey<Blake2_128Concat, u8>,
			NMapKey<Identity, u16>,
			NMapKey<Twox64Concat, u32>
		),
		u64,
		ValueQuery,
	>;

	/// Named alternative syntax.
    #[pallet::storage]
    pub type Bar<T> = StorageNMap<
		Key = (
			NMapKey<Blake2_128Concat, u8>,
			NMapKey<Identity, u16>,
			NMapKey<Twox64Concat, u32>
		),
		Value = u64,
		QueryKind = ValueQuery,
	>;
}

Implementations§

source§

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: Get<QueryKind::Query> + 'static, MaxValues: Get<Option<u32>>,

source

pub fn hashed_key_for<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>( key: KArg ) -> Vec<u8>

Get the storage key used to fetch a value corresponding to a specific key.

source

pub fn contains_key<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>( key: KArg ) -> bool

Does the value (explicitly) exist in storage?

source

pub fn get<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>( key: KArg ) -> QueryKind::Query

Load the value associated with the given key from the map.

source

pub fn try_get<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>( key: KArg ) -> Result<Value, ()>

Try to get the value for the given key from the map.

Returns Ok if it exists, Err if not.

source

pub fn set<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>( key: KArg, query: QueryKind::Query )

Store or remove the value to be associated with key so that get returns the query.

source

pub fn take<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>( key: KArg ) -> QueryKind::Query

Take a value from storage, removing it afterwards.

source

pub fn swap<KOther, KArg1, KArg2>(key1: KArg1, key2: KArg2)

Swap the values of two key-pairs.

source

pub fn insert<KArg, VArg>(key: KArg, val: VArg)
where KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter, VArg: EncodeLike<Value>,

Store a value to be associated with the given keys from the map.

source

pub fn remove<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>(key: KArg)

Remove the value under the given keys.

source

pub fn remove_prefix<KP>( partial_key: KP, limit: Option<u32> ) -> KillStorageResult
where Key: HasKeyPrefix<KP>,

👎Deprecated: Use clear_prefix instead

Remove 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.

source

pub fn clear_prefix<KP>( partial_key: KP, limit: u32, maybe_cursor: Option<&[u8]> ) -> MultiRemovalResults
where 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.

source

pub fn iter_prefix_values<KP>(partial_key: KP) -> PrefixIterator<Value>
where Key: HasKeyPrefix<KP>,

Iterate over values that share the first key.

source

pub fn mutate<KArg, R, F>(key: KArg, f: F) -> R
where KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter, F: FnOnce(&mut QueryKind::Query) -> R,

Mutate the value under the given keys.

source

pub fn try_mutate<KArg, R, E, F>(key: KArg, f: F) -> Result<R, E>
where KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter, F: FnOnce(&mut QueryKind::Query) -> Result<R, E>,

Mutate the value under the given keys when the closure returns Ok.

source

pub fn mutate_exists<KArg, R, F>(key: KArg, f: F) -> R
where KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter, F: FnOnce(&mut Option<Value>) -> R,

Mutate the value under the given keys. Deletes the item if mutated to a None.

source

pub fn try_mutate_exists<KArg, R, E, F>(key: KArg, f: F) -> Result<R, E>
where KArg: EncodeLikeTuple<Key::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.

source

pub fn append<Item, EncodeLikeItem, KArg>(key: KArg, item: EncodeLikeItem)
where KArg: EncodeLikeTuple<Key::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.

source

pub fn decode_len<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>( key: KArg ) -> Option<usize>
where 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 completely ignored by this function.

source

pub fn migrate_keys<KArg>(key: KArg, hash_fns: Key::HArg) -> Option<Value>

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.

source

pub fn remove_all(limit: Option<u32>) -> KillStorageResult

👎Deprecated: Use clear instead

Remove 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.

source

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.

source

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.

source

pub fn translate_values<OldValue: Decode, F: FnMut(OldValue) -> Option<Value>>( 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.

source§

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: Get<QueryKind::Query> + 'static, MaxValues: Get<Option<u32>>,

source

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.

source

pub fn iter_prefix_from<KP>( kp: KP, starting_raw_key: Vec<u8> ) -> 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.

source

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.

source

pub fn iter_key_prefix_from<KP>( kp: KP, starting_raw_key: Vec<u8> ) -> 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.

source

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.

source

pub fn iter() -> PrefixIterator<(Key::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.

source

pub fn iter_from(starting_raw_key: Vec<u8>) -> PrefixIterator<(Key::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.

source

pub fn iter_keys() -> KeyPrefixIterator<Key::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.

source

pub fn iter_keys_from(starting_raw_key: Vec<u8>) -> KeyPrefixIterator<Key::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.

source

pub fn drain() -> PrefixIterator<(Key::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.

source

pub fn translate<O: Decode, F: FnMut(Key::Key, O) -> Option<Value>>(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.

Trait Implementations§

source§

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: Get<QueryKind::Query> + 'static, MaxValues: Get<Option<u32>>,

It doesn’t require to implement MaxEncodedLen and give no information for max_size.

source§

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: Get<QueryKind::Query> + 'static, MaxValues: Get<Option<u32>>,

source§

fn build_metadata( docs: Vec<&'static str>, entries: &mut Vec<StorageEntryMetadataIR> )

Build into entries the storage metadata entries of a storage given some docs.
source§

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: Get<QueryKind::Query> + 'static, MaxValues: Get<Option<u32>>,

source§

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: Get<QueryKind::Query> + 'static, MaxValues: Get<Option<u32>>,

source§

fn pallet_prefix() -> &'static [u8]

Pallet prefix. Used for generating final key.
source§

fn storage_prefix() -> &'static [u8]

Storage prefix. Used for generating final key.
source§

fn final_prefix() -> [u8; 32]

Final full prefix that prefixes all keys.
source§

fn remove_all(limit: Option<u32>) -> KillStorageResult

👎Deprecated: Use clear instead
Remove all values in the overlay and up to limit in the backend. Read more
source§

fn clear(limit: u32, maybe_cursor: Option<&[u8]>) -> MultiRemovalResults

Attempt to remove all items from the map. Read more
source§

fn iter_values() -> PrefixIterator<Value>

Iter over all value of the storage. Read more
source§

fn translate_values<OldValue: Decode, F: FnMut(OldValue) -> Option<Value>>(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. Read more
source§

impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> TryDecodeEntireStorage for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>
where Prefix: StorageInstance, Key: KeyGenerator, Value: FullCodec, QueryKind: QueryKindTrait<Value, OnEmpty>, OnEmpty: Get<QueryKind::Query> + 'static, MaxValues: Get<Option<u32>>,

source§

fn try_decode_entire_state() -> Result<usize, Vec<TryDecodeEntireStorageError>>

Decode the entire data under the given storage, returning Ok(bytes_decoded) if success.

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§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CheckedConversion for T

source§

fn checked_from<T>(t: T) -> Option<Self>
where Self: TryFrom<T>,

Convert from a value of T into an equivalent instance of Option<Self>. Read more
source§

fn checked_into<T>(self) -> Option<T>
where Self: TryInto<T>,

Consume self to return Some equivalent value of Option<T>. Read more
§

impl<T> Conv for T

§

fn conv<T>(self) -> T
where Self: Into<T>,

Converts self into T using Into<T>. Read more
§

impl<T> FmtForward for T

§

fn fmt_binary(self) -> FmtBinary<Self>
where Self: Binary,

Causes self to use its Binary implementation when Debug-formatted.
§

fn fmt_display(self) -> FmtDisplay<Self>
where Self: Display,

Causes self to use its Display implementation when Debug-formatted.
§

fn fmt_lower_exp(self) -> FmtLowerExp<Self>
where Self: LowerExp,

Causes self to use its LowerExp implementation when Debug-formatted.
§

fn fmt_lower_hex(self) -> FmtLowerHex<Self>
where Self: LowerHex,

Causes self to use its LowerHex implementation when Debug-formatted.
§

fn fmt_octal(self) -> FmtOctal<Self>
where Self: Octal,

Causes self to use its Octal implementation when Debug-formatted.
§

fn fmt_pointer(self) -> FmtPointer<Self>
where Self: Pointer,

Causes self to use its Pointer implementation when Debug-formatted.
§

fn fmt_upper_exp(self) -> FmtUpperExp<Self>
where Self: UpperExp,

Causes self to use its UpperExp implementation when Debug-formatted.
§

fn fmt_upper_hex(self) -> FmtUpperHex<Self>
where Self: UpperHex,

Causes self to use its UpperHex implementation when Debug-formatted.
§

fn fmt_list(self) -> FmtList<Self>
where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> IntoKey<U> for T
where U: FromKey<T>,

source§

fn into_key(self) -> U

source§

impl<T> IsType<T> for T

source§

fn from_ref(t: &T) -> &T

Cast reference.
source§

fn into_ref(&self) -> &T

Cast reference.
source§

fn from_mut(t: &mut T) -> &mut T

Cast mutable reference.
source§

fn into_mut(&mut self) -> &mut T

Cast mutable reference.
source§

impl<T, Outer> IsWrappedBy<Outer> for T
where Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,

source§

fn from_ref(outer: &Outer) -> &T

Get a reference to the inner from the outer.

source§

fn from_mut(outer: &mut Outer) -> &mut T

Get a mutable reference to the inner from the outer.

source§

impl<K, V, G> IterableStorageNMap<K, V> for G
where K: ReversibleKeyGenerator, V: FullCodec, G: StorageNMap<K, V>,

§

type KeyIterator = KeyPrefixIterator<<K as KeyGenerator>::Key>

The type that iterates over all (key1, key2, key3, ... keyN) tuples.
§

type Iterator = PrefixIterator<(<K as KeyGenerator>::Key, V)>

The type that iterates over all (key1, key2, key3, ... keyN), value) tuples.
source§

fn iter_prefix<KP>( kp: KP ) -> PrefixIterator<(<K as HasKeyPrefix<KP>>::Suffix, V)>

Enumerate all elements in the map with prefix key 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.
source§

fn iter_prefix_from<KP>( kp: KP, starting_raw_key: Vec<u8> ) -> PrefixIterator<(<K as HasKeyPrefix<KP>>::Suffix, V)>

Enumerate all elements in the map with prefix key 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.
source§

fn iter_key_prefix<KP>( kp: KP ) -> KeyPrefixIterator<<K as HasKeyPrefix<KP>>::Suffix>

Enumerate all suffix keys in the map with prefix key 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.
source§

fn iter_key_prefix_from<KP>( kp: KP, starting_raw_key: Vec<u8> ) -> KeyPrefixIterator<<K as HasKeyPrefix<KP>>::Suffix>

Enumerate all suffix keys in the map with prefix key 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.
source§

fn drain_prefix<KP>( kp: KP ) -> PrefixIterator<(<K as HasKeyPrefix<KP>>::Suffix, V)>

Remove all elements from the map with prefix key 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.
source§

fn iter() -> <G as IterableStorageNMap<K, V>>::Iterator

Enumerate all elements in the map in lexicographical order of the encoded key. If you add or remove values to the map while doing this, you’ll get undefined results.
source§

fn iter_from( starting_raw_key: Vec<u8> ) -> <G as IterableStorageNMap<K, V>>::Iterator

Enumerate all elements in the map after a specified 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.
source§

fn iter_keys() -> <G as IterableStorageNMap<K, V>>::KeyIterator

Enumerate all keys in the map in lexicographical order of the encoded key. If you add or remove values to the map while doing this, you’ll get undefined results.
source§

fn iter_keys_from( starting_raw_key: Vec<u8> ) -> <G as IterableStorageNMap<K, V>>::KeyIterator

Enumerate all keys in the map after 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.
source§

fn drain() -> <G as IterableStorageNMap<K, V>>::Iterator

Remove all elements from the map and iterate through them in lexicographical order of the encoded key. If you add elements to the map while doing this, you’ll get undefined results.
source§

fn translate<O, F>(f: F)
where O: Decode, F: FnMut(<K as KeyGenerator>::Key, O) -> Option<V>,

Translate the values of all elements by a function f, in the map in lexicographical order of the encoded key. By returning None from f for an element, you’ll remove it from the map. Read more
§

impl<T> Pipe for T
where T: ?Sized,

§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
where Self: Sized,

Pipes by value. This is generally the method you want to use. Read more
§

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R
where R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R
where R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
where Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> R
where Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
where Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

Borrows self, then passes self.as_ref() into the pipe function.
§

fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
where Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.as_mut() into the pipe function.
§

fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
where Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R ) -> R
where Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> SaturatedConversion for T

source§

fn saturated_from<T>(t: T) -> Self
where Self: UniqueSaturatedFrom<T>,

Convert from a value of T into an equivalent instance of Self. Read more
source§

fn saturated_into<T>(self) -> T
where Self: UniqueSaturatedInto<T>,

Consume self to return an equivalent value of T. Read more
source§

impl<K, V, G> StorageNMap<K, V> for G
where K: KeyGenerator, V: FullCodec, G: StorageNMap<K, V>,

§

type Query = <G as StorageNMap<K, V>>::Query

The type that get/take returns.
source§

fn hashed_key_for<KArg>(key: KArg) -> Vec<u8>

Get the storage key used to fetch a value corresponding to a specific key.
source§

fn contains_key<KArg>(key: KArg) -> bool

Does the value (explicitly) exist in storage?
source§

fn get<KArg>(key: KArg) -> <G as StorageNMap<K, V>>::Query

Load the value associated with the given key from the map.
source§

fn try_get<KArg>(key: KArg) -> Result<V, ()>

Try to get the value for the given key from the map. Read more
source§

fn set<KArg>(key: KArg, q: <G as StorageNMap<K, V>>::Query)

Store or remove the value to be associated with key so that get returns the query.
source§

fn take<KArg>(key: KArg) -> <G as StorageNMap<K, V>>::Query

Take the value under a key.
source§

fn swap<KOther, KArg1, KArg2>(key1: KArg1, key2: KArg2)

Swap the values of two keys.
source§

fn insert<KArg, VArg>(key: KArg, val: VArg)
where KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter, VArg: EncodeLike<V>,

Store a value to be associated with the given key from the map.
source§

fn remove<KArg>(key: KArg)

Remove the value under a key.
source§

fn remove_prefix<KP>(partial_key: KP, limit: Option<u32>) -> KillStorageResult
where K: HasKeyPrefix<KP>,

👎Deprecated: Use clear_prefix instead
Remove all values starting with partial_key in the overlay and up to limit in the backend. Read more
source§

fn clear_prefix<KP>( partial_key: KP, limit: u32, maybe_cursor: Option<&[u8]> ) -> MultiRemovalResults
where K: HasKeyPrefix<KP>,

Attempt to remove items from the map matching a partial_key prefix. Read more
source§

fn contains_prefix<KP>(partial_key: KP) -> bool
where K: HasKeyPrefix<KP>,

Does any value under a partial_key prefix (explicitly) exist in storage? Might have unexpected behaviour with empty keys, e.g. [].
source§

fn iter_prefix_values<KP>(partial_key: KP) -> PrefixIterator<V>
where K: HasKeyPrefix<KP>,

Iterate over values that share the partial prefix key.
source§

fn mutate<KArg, R, F>(key: KArg, f: F) -> R
where KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter, F: FnOnce(&mut <G as StorageNMap<K, V>>::Query) -> R,

Mutate the value under a key.
source§

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>,

Mutate the item, only if an Ok value is returned.
source§

fn mutate_exists<KArg, R, F>(key: KArg, f: F) -> R
where KArg: EncodeLikeTuple<<K as KeyGenerator>::KArg> + TupleToEncodedIter, F: FnOnce(&mut Option<V>) -> R,

Mutate the value under a key. Read more
source§

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>,

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.
source§

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>,

Append the given items to the value in the storage. Read more
source§

fn migrate_keys<KArg>( key: KArg, hash_fns: <K as KeyGenerator>::HArg ) -> Option<V>

Migrate an item with the given key from defunct hash_fns to the current hashers. Read more
source§

fn decode_len<KArg: EncodeLikeTuple<K::KArg> + TupleToEncodedIter>( key: KArg ) -> Option<usize>

Read the length of the storage value without decoding the entire value under the given key. Read more
§

impl<T> Tap for T

§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
§

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

Calls .tap() only in debug builds, and is erased in release builds.
§

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

Calls .tap_mut() only in debug builds, and is erased in release builds.
§

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Calls .tap_borrow() only in debug builds, and is erased in release builds.
§

fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds.
§

fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Calls .tap_ref() only in debug builds, and is erased in release builds.
§

fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Calls .tap_ref_mut() only in debug builds, and is erased in release builds.
§

fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
§

impl<T> TryConv for T

§

fn try_conv<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T, U> TryIntoKey<U> for T
where U: TryFromKey<T>,

§

type Error = <U as TryFromKey<T>>::Error

source§

fn try_into_key(self) -> Result<U, <U as TryFromKey<T>>::Error>

source§

impl<S, T> UncheckedInto<T> for S
where T: UncheckedFrom<S>,

source§

fn unchecked_into(self) -> T

The counterpart to unchecked_from.
source§

impl<T, S> UniqueSaturatedInto<T> for S
where T: Bounded, S: TryInto<T>,

source§

fn unique_saturated_into(self) -> T

Consume self to return an equivalent value of T.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> JsonSchemaMaybe for T

source§

impl<T> MaybeRefUnwindSafe for T
where T: RefUnwindSafe,

source§

impl<T> MaybeRefUnwindSafe for T
where T: RefUnwindSafe,