Struct frame_support::storage::types::CountedStorageNMap
source · pub struct CountedStorageNMap<Prefix, Key, Value, QueryKind = OptionQuery, OnEmpty = GetDefault, MaxValues = GetDefault>(/* private fields */);
Expand description
A wrapper around a StorageNMap
and a StorageValue
(with the value being u32
) to keep
track of how many items are in a map, without needing to iterate all the values.
This storage item has some additional storage read and write overhead when manipulating values compared to a regular storage map.
For functions where we only add or remove a value, a single storage read is needed to check if that value already exists. For mutate functions, two storage reads are used to check if the value existed before and after the mutation.
Whenever the counter needs to be updated, an additional read and write occurs to update that counter.
For general information regarding the #[pallet::storage]
attribute, refer to
crate::pallet_macros::storage
.
§Example
#[frame_support::pallet]
mod pallet {
/// A kitchen-sink CountedStorageNMap, with all possible additional attributes.
#[pallet::storage]
#[pallet::getter(fn foo)]
#[pallet::storage_prefix = "OtherFoo"]
#[pallet::unbounded]
pub type Foo<T> = CountedStorageNMap<
_,
(
NMapKey<Blake2_128Concat, u8>,
NMapKey<Identity, u16>,
NMapKey<Twox64Concat, u32>
),
u64,
ValueQuery,
>;
/// Alternative named syntax.
#[pallet::storage]
pub type Bar<T> = CountedStorageNMap<
Key = (
NMapKey<Blake2_128Concat, u8>,
NMapKey<Identity, u16>,
NMapKey<Twox64Concat, u32>
),
Value = u64,
QueryKind = ValueQuery,
>;
}
Implementations§
source§impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageNMapInstance,
Key: KeyGenerator,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageNMapInstance,
Key: KeyGenerator,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
sourcepub fn counter_storage_final_key() -> [u8; 32]
pub fn counter_storage_final_key() -> [u8; 32]
The key used to store the counter of the map.
sourcepub fn map_storage_final_prefix() -> Vec<u8> ⓘ
pub fn map_storage_final_prefix() -> Vec<u8> ⓘ
The prefix used to generate the key of the map.
sourcepub fn hashed_key_for<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>(
key: KArg
) -> Vec<u8> ⓘ
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.
sourcepub fn contains_key<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>(
key: KArg
) -> bool
pub fn contains_key<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>( key: KArg ) -> bool
Does the value (explicitly) exist in storage?
sourcepub fn get<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>(
key: KArg
) -> QueryKind::Query
pub fn get<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>( key: KArg ) -> QueryKind::Query
Load the value associated with the given key from the map.
sourcepub fn try_get<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>(
key: KArg
) -> Result<Value, ()>
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.
sourcepub fn set<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>(
key: KArg,
query: QueryKind::Query
)
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
.
It decrements the counter when the value is removed.
sourcepub fn take<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>(
key: KArg
) -> QueryKind::Query
pub fn take<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>( key: KArg ) -> QueryKind::Query
Take a value from storage, removing it afterwards.
sourcepub fn swap<KOther, KArg1, KArg2>(key1: KArg1, key2: KArg2)where
KOther: KeyGenerator,
KArg1: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter,
KArg2: EncodeLikeTuple<KOther::KArg> + TupleToEncodedIter,
pub fn swap<KOther, KArg1, KArg2>(key1: KArg1, key2: KArg2)where
KOther: KeyGenerator,
KArg1: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter,
KArg2: EncodeLikeTuple<KOther::KArg> + TupleToEncodedIter,
Swap the values of two key-pairs.
sourcepub fn insert<KArg, VArg>(key: KArg, val: VArg)where
KArg: EncodeLikeTuple<Key::KArg> + EncodeLike<Key::KArg> + TupleToEncodedIter,
VArg: EncodeLike<Value>,
pub fn insert<KArg, VArg>(key: KArg, val: VArg)where
KArg: EncodeLikeTuple<Key::KArg> + EncodeLike<Key::KArg> + TupleToEncodedIter,
VArg: EncodeLike<Value>,
Store a value to be associated with the given keys from the map.
sourcepub fn remove<KArg: EncodeLikeTuple<Key::KArg> + EncodeLike<Key::KArg> + TupleToEncodedIter>(
key: KArg
)
pub fn remove<KArg: EncodeLikeTuple<Key::KArg> + EncodeLike<Key::KArg> + TupleToEncodedIter>( key: KArg )
Remove the value under the given keys.
sourcepub 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.
sourcepub 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.
sourcepub 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>,
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
.
sourcepub fn mutate_exists<KArg, R, F>(key: KArg, f: F) -> R
pub fn mutate_exists<KArg, R, F>(key: KArg, f: F) -> R
Mutate the value under the given keys. Deletes the item if mutated to a None
.
sourcepub 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>,
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
.
sourcepub fn append<Item, EncodeLikeItem, KArg>(key: KArg, item: EncodeLikeItem)where
KArg: EncodeLikeTuple<Key::KArg> + EncodeLike<Key::KArg> + TupleToEncodedIter,
Item: Encode,
EncodeLikeItem: EncodeLike<Item>,
Value: StorageAppend<Item>,
pub fn append<Item, EncodeLikeItem, KArg>(key: KArg, item: EncodeLikeItem)where
KArg: EncodeLikeTuple<Key::KArg> + EncodeLike<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.
sourcepub fn decode_len<KArg: EncodeLikeTuple<Key::KArg> + TupleToEncodedIter>(
key: KArg
) -> Option<usize>where
Value: StorageDecodeLength,
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.
sourcepub fn migrate_keys<KArg>(key: KArg, hash_fns: Key::HArg) -> Option<Value>
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.
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: Decode, F: FnMut(OldValue) -> Option<Value>>(
f: F
)
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.
sourcepub fn initialize_counter() -> u32
pub fn initialize_counter() -> u32
Initialize the counter with the actual number of items in the map.
This function iterates through all the items in the map and sets the counter. This operation can be very heavy, so use with caution.
Returns the number of items in the map which is used to set the counter.
source§impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageNMapInstance,
Key: ReversibleKeyGenerator,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageNMapInstance,
Key: ReversibleKeyGenerator,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
sourcepub 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.
sourcepub fn iter_prefix_from<KP>(
kp: KP,
starting_raw_key: Vec<u8>
) -> PrefixIterator<(<Key as HasKeyPrefix<KP>>::Suffix, Value), OnRemovalCounterUpdate<Prefix>> ⓘwhere
Key: HasReversibleKeyPrefix<KP>,
pub fn iter_prefix_from<KP>(
kp: KP,
starting_raw_key: Vec<u8>
) -> PrefixIterator<(<Key as HasKeyPrefix<KP>>::Suffix, Value), OnRemovalCounterUpdate<Prefix>> ⓘ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.
sourcepub 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.
sourcepub fn iter_key_prefix_from<KP>(
kp: KP,
starting_raw_key: Vec<u8>
) -> KeyPrefixIterator<<Key as HasKeyPrefix<KP>>::Suffix> ⓘwhere
Key: HasReversibleKeyPrefix<KP>,
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.
sourcepub fn drain_prefix<KP>(
kp: KP
) -> PrefixIterator<(<Key as HasKeyPrefix<KP>>::Suffix, Value), OnRemovalCounterUpdate<Prefix>> ⓘwhere
Key: HasReversibleKeyPrefix<KP>,
pub fn drain_prefix<KP>(
kp: KP
) -> PrefixIterator<(<Key as HasKeyPrefix<KP>>::Suffix, Value), OnRemovalCounterUpdate<Prefix>> ⓘ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.
sourcepub fn iter(
) -> PrefixIterator<(Key::Key, Value), OnRemovalCounterUpdate<Prefix>> ⓘ
pub fn iter( ) -> PrefixIterator<(Key::Key, Value), OnRemovalCounterUpdate<Prefix>> ⓘ
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.
sourcepub fn iter_from(
starting_raw_key: Vec<u8>
) -> PrefixIterator<(Key::Key, Value), OnRemovalCounterUpdate<Prefix>> ⓘ
pub fn iter_from( starting_raw_key: Vec<u8> ) -> PrefixIterator<(Key::Key, Value), OnRemovalCounterUpdate<Prefix>> ⓘ
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.
sourcepub fn iter_keys() -> KeyPrefixIterator<Key::Key> ⓘ
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.
sourcepub fn iter_keys_from(starting_raw_key: Vec<u8>) -> KeyPrefixIterator<Key::Key> ⓘ
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.
sourcepub fn drain(
) -> PrefixIterator<(Key::Key, Value), OnRemovalCounterUpdate<Prefix>> ⓘ
pub fn drain( ) -> PrefixIterator<(Key::Key, Value), OnRemovalCounterUpdate<Prefix>> ⓘ
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: Decode, F: FnMut(Key::Key, O) -> Option<Value>>(f: F)
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 can’t be decoded because the storage is corrupted, then it is skipped.
Trait Implementations§
source§impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> PartialStorageInfoTrait for CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageNMapInstance,
Key: KeyGenerator,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> PartialStorageInfoTrait for CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageNMapInstance,
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
.
fn partial_storage_info() -> Vec<StorageInfo>
source§impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> StorageEntryMetadataBuilder for CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageNMapInstance,
Key: KeyGenerator,
Value: FullCodec + StaticTypeInfo,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> StorageEntryMetadataBuilder for CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageNMapInstance,
Key: KeyGenerator,
Value: FullCodec + StaticTypeInfo,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::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, Key, Value, QueryKind, OnEmpty, MaxValues> StorageInfoTrait for CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageNMapInstance,
Key: KeyGenerator + KeyGeneratorMaxEncodedLen,
Value: FullCodec + MaxEncodedLen,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> StorageInfoTrait for CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageNMapInstance,
Key: KeyGenerator + KeyGeneratorMaxEncodedLen,
Value: FullCodec + MaxEncodedLen,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
fn storage_info() -> Vec<StorageInfo>
source§impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> TryDecodeEntireStorage for CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageNMapInstance,
Key: KeyGenerator,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> TryDecodeEntireStorage for CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageNMapInstance,
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>>
fn try_decode_entire_state() -> Result<usize, Vec<TryDecodeEntireStorageError>>
Ok(bytes_decoded)
if success.Auto Trait Implementations§
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> RefUnwindSafe for CountedStorageNMap<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 CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> Sync for CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> Unpin for CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>
impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> UnwindSafe for CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>where
Key: UnwindSafe,
MaxValues: UnwindSafe,
OnEmpty: UnwindSafe,
Prefix: UnwindSafe,
QueryKind: UnwindSafe,
Value: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
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) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
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
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
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
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
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
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
T
. Read more§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.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
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.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
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.§impl<T> TryConv for T
impl<T> TryConv for T
source§impl<T, U> TryIntoKey<U> for Twhere
U: TryFromKey<T>,
impl<T, U> TryIntoKey<U> for Twhere
U: TryFromKey<T>,
type Error = <U as TryFromKey<T>>::Error
fn try_into_key(self) -> Result<U, <U as TryFromKey<T>>::Error>
source§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.source§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.