Struct frame_support::pallet_prelude::StorageMap
source · pub struct StorageMap<Prefix, Hasher, Key, Value, QueryKind = OptionQuery, OnEmpty = GetDefault, MaxValues = GetDefault>(_);
Expand description
A type that allow to store value for given key. Allowing to insert/remove/iterate on values.
Each value is stored at:
Twox128(Prefix::pallet_prefix())
++ Twox128(Prefix::STORAGE_PREFIX)
++ Hasher1(encode(key))
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. Otherwise, other values in storage can be compromised.
Implementations§
source§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
sourcepub fn hashed_key_for<KeyArg: EncodeLike<Key>>(key: KeyArg) -> Vec<u8> ⓘ
pub fn hashed_key_for<KeyArg: EncodeLike<Key>>(key: KeyArg) -> Vec<u8> ⓘ
Get the storage key used to fetch a value corresponding to a specific key.
sourcepub fn contains_key<KeyArg: EncodeLike<Key>>(key: KeyArg) -> bool
pub fn contains_key<KeyArg: EncodeLike<Key>>(key: KeyArg) -> bool
Does the value (explicitly) exist in storage?
sourcepub fn get<KeyArg: EncodeLike<Key>>(key: KeyArg) -> QueryKind::Query
pub fn get<KeyArg: EncodeLike<Key>>(key: KeyArg) -> QueryKind::Query
Load the value associated with the given key from the map.
sourcepub fn try_get<KeyArg: EncodeLike<Key>>(key: KeyArg) -> Result<Value, ()>
pub fn try_get<KeyArg: EncodeLike<Key>>(key: KeyArg) -> Result<Value, ()>
Try to get the value for the given key from the map.
Returns Ok
if it exists, Err
if not.
sourcepub fn swap<KeyArg1: EncodeLike<Key>, KeyArg2: EncodeLike<Key>>(
key1: KeyArg1,
key2: KeyArg2
)
pub fn swap<KeyArg1: EncodeLike<Key>, KeyArg2: EncodeLike<Key>>(
key1: KeyArg1,
key2: KeyArg2
)
Swap the values of two keys.
sourcepub fn set<KeyArg: EncodeLike<Key>>(key: KeyArg, q: QueryKind::Query)
pub fn set<KeyArg: EncodeLike<Key>>(key: KeyArg, q: QueryKind::Query)
Store or remove the value to be associated with key
so that get
returns the query
.
sourcepub fn insert<KeyArg: EncodeLike<Key>, ValArg: EncodeLike<Value>>(
key: KeyArg,
val: ValArg
)
pub fn insert<KeyArg: EncodeLike<Key>, ValArg: EncodeLike<Value>>(
key: KeyArg,
val: ValArg
)
Store a value to be associated with the given key from the map.
sourcepub fn remove<KeyArg: EncodeLike<Key>>(key: KeyArg)
pub fn remove<KeyArg: EncodeLike<Key>>(key: KeyArg)
Remove the value under a key.
sourcepub fn mutate<KeyArg: EncodeLike<Key>, R, F: FnOnce(&mut QueryKind::Query) -> R>(
key: KeyArg,
f: F
) -> R
pub fn mutate<KeyArg: EncodeLike<Key>, R, F: FnOnce(&mut QueryKind::Query) -> R>(
key: KeyArg,
f: F
) -> R
Mutate the value under a key.
sourcepub fn try_mutate<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>where
KeyArg: EncodeLike<Key>,
F: FnOnce(&mut QueryKind::Query) -> Result<R, E>,
pub fn try_mutate<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>where
KeyArg: EncodeLike<Key>,
F: FnOnce(&mut QueryKind::Query) -> Result<R, E>,
Mutate the item, only if an Ok
value is returned.
sourcepub fn mutate_exists<KeyArg: EncodeLike<Key>, R, F: FnOnce(&mut Option<Value>) -> R>(
key: KeyArg,
f: F
) -> R
pub fn mutate_exists<KeyArg: EncodeLike<Key>, R, F: FnOnce(&mut Option<Value>) -> R>(
key: KeyArg,
f: F
) -> R
Mutate the value under a key. Deletes the item if mutated to a None
.
sourcepub fn try_mutate_exists<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>where
KeyArg: EncodeLike<Key>,
F: FnOnce(&mut Option<Value>) -> Result<R, E>,
pub fn try_mutate_exists<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>where
KeyArg: EncodeLike<Key>,
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 take<KeyArg: EncodeLike<Key>>(key: KeyArg) -> QueryKind::Query
pub fn take<KeyArg: EncodeLike<Key>>(key: KeyArg) -> QueryKind::Query
Take the value under a key.
sourcepub fn append<Item, EncodeLikeItem, EncodeLikeKey>(
key: EncodeLikeKey,
item: EncodeLikeItem
)where
EncodeLikeKey: EncodeLike<Key>,
Item: Encode,
EncodeLikeItem: EncodeLike<Item>,
Value: StorageAppend<Item>,
pub fn append<Item, EncodeLikeItem, EncodeLikeKey>(
key: EncodeLikeKey,
item: EncodeLikeItem
)where
EncodeLikeKey: EncodeLike<Key>,
Item: Encode,
EncodeLikeItem: EncodeLike<Item>,
Value: StorageAppend<Item>,
Append the given items to the value in the storage.
Value
is required to implement codec::EncodeAppend
.
Warning
If the storage item is not encoded properly, the storage will be overwritten
and set to [item]
. Any default value set for the storage item will be ignored
on overwrite.
sourcepub fn decode_len<KeyArg: EncodeLike<Key>>(key: KeyArg) -> Option<usize>where
Value: StorageDecodeLength,
pub fn decode_len<KeyArg: EncodeLike<Key>>(key: KeyArg) -> Option<usize>where
Value: StorageDecodeLength,
Read the length of the storage value without decoding the entire value under the
given key
.
Value
is required to implement StorageDecodeLength
.
If the value does not exists or it fails to decode the length, None
is returned.
Otherwise Some(len)
is returned.
Warning
None
does not mean that get()
does not return a value. The default value is completly
ignored by this function.
sourcepub fn migrate_key<OldHasher: StorageHasher, KeyArg: EncodeLike<Key>>(
key: KeyArg
) -> Option<Value>
pub fn migrate_key<OldHasher: StorageHasher, KeyArg: EncodeLike<Key>>(
key: KeyArg
) -> Option<Value>
Migrate an item with the given key
from a defunct OldHasher
to the current hasher.
If the key doesn’t exist, then it’s a no-op. If it does, then it returns its value.
sourcepub fn remove_all(limit: Option<u32>) -> KillStorageResult
👎Deprecated: Use clear
instead
pub fn remove_all(limit: Option<u32>) -> KillStorageResult
clear
insteadRemove all values of the storage in the overlay and up to limit
in the backend.
All values in the client overlay will be deleted, if there is some limit
then up to
limit
values are deleted from the client backend, if limit
is none then all values in
the client backend are deleted.
Note
Calling this multiple times per block with a limit
set leads always to the same keys being
removed and the same result being returned. This happens because the keys to delete in the
overlay are not taken into account when deleting keys in the backend.
sourcepub fn clear(limit: u32, maybe_cursor: Option<&[u8]>) -> MultiRemovalResults
pub fn clear(limit: u32, maybe_cursor: Option<&[u8]>) -> MultiRemovalResults
Attempt to remove all items from the map.
Returns MultiRemovalResults
to inform about the result. Once
the resultant maybe_cursor
field is None
, then no further items remain to be deleted.
NOTE: After the initial call for any given map, it is important that no further items
are inserted into the map. If so, then the map may not be empty when the resultant
maybe_cursor
is None
.
Limit
A limit
must always be provided through in order to cap the maximum
amount of deletions done in a single call. This is one fewer than the
maximum number of backend iterations which may be done by this operation and as such
represents the maximum number of backend deletions which may happen. A limit
of zero
implies that no keys will be deleted, though there may be a single iteration done.
Cursor
A cursor may be passed in to this operation with maybe_cursor
. None
should only be
passed once (in the initial call) for any given storage map. Subsequent calls
operating on the same map should always pass Some
, and this should be equal to the
previous call result’s maybe_cursor
field.
sourcepub fn iter_values() -> PrefixIterator<Value> ⓘ
pub fn iter_values() -> PrefixIterator<Value> ⓘ
Iter over all value of the storage.
NOTE: If a value failed to decode because storage is corrupted then it is skipped.
sourcepub fn translate_values<OldValue: 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 try_append<KArg, Item, EncodeLikeItem>(
key: KArg,
item: EncodeLikeItem
) -> Result<(), ()>where
KArg: EncodeLike<Key> + Clone,
Item: Encode,
EncodeLikeItem: EncodeLike<Item>,
Value: StorageTryAppend<Item>,
pub fn try_append<KArg, Item, EncodeLikeItem>(
key: KArg,
item: EncodeLikeItem
) -> Result<(), ()>where
KArg: EncodeLike<Key> + Clone,
Item: Encode,
EncodeLikeItem: EncodeLike<Item>,
Value: StorageTryAppend<Item>,
Try and append the given item to the value in the storage.
Is only available if Value
of the storage implements StorageTryAppend
.
source§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher + ReversibleStorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher + ReversibleStorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
sourcepub fn iter() -> PrefixIterator<(Key, Value)> ⓘ
pub fn iter() -> PrefixIterator<(Key, Value)> ⓘ
Enumerate all elements in the map in no particular order.
If you alter the map while doing this, you’ll get undefined results.
sourcepub fn iter_from(starting_raw_key: Vec<u8>) -> PrefixIterator<(Key, Value)> ⓘ
pub fn iter_from(starting_raw_key: Vec<u8>) -> PrefixIterator<(Key, Value)> ⓘ
Enumerate all elements in the map after a specified starting_raw_key
in no
particular order.
If you alter the map while doing this, you’ll get undefined results.
sourcepub fn iter_keys() -> KeyPrefixIterator<Key> ⓘ
pub fn iter_keys() -> KeyPrefixIterator<Key> ⓘ
Enumerate all keys in the map in no particular order.
If you alter the map while doing this, you’ll get undefined results.
sourcepub fn iter_keys_from(starting_raw_key: Vec<u8>) -> KeyPrefixIterator<Key> ⓘ
pub fn iter_keys_from(starting_raw_key: Vec<u8>) -> KeyPrefixIterator<Key> ⓘ
Enumerate all keys in the map after a specified starting_raw_key
in no particular
order.
If you alter the map while doing this, you’ll get undefined results.
sourcepub fn drain() -> PrefixIterator<(Key, Value)> ⓘ
pub fn drain() -> PrefixIterator<(Key, Value)> ⓘ
Remove all elements from the map and iterate through them in no particular order.
If you add elements to the map while doing this, you’ll get undefined results.
sourcepub fn translate<O: Decode, F: FnMut(Key, O) -> Option<Value>>(f: F)
pub fn translate<O: Decode, F: FnMut(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, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> PartialStorageInfoTrait for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> PartialStorageInfoTrait for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
It doesn’t require to implement MaxEncodedLen
and give no information for max_size
.
fn partial_storage_info() -> Vec<StorageInfo> ⓘ
source§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageEntryMetadataBuilder for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec + StaticTypeInfo,
Value: FullCodec + StaticTypeInfo,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageEntryMetadataBuilder for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec + StaticTypeInfo,
Value: FullCodec + StaticTypeInfo,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
source§fn build_metadata(
docs: Vec<&'static str>,
entries: &mut Vec<StorageEntryMetadata>
)
fn build_metadata(
docs: Vec<&'static str>,
entries: &mut Vec<StorageEntryMetadata>
)
entries
the storage metadata entries of a storage given some docs
.source§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageInfoTrait for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec + MaxEncodedLen,
Value: FullCodec + MaxEncodedLen,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageInfoTrait for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec + MaxEncodedLen,
Value: FullCodec + MaxEncodedLen,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
fn storage_info() -> Vec<StorageInfo> ⓘ
source§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StoragePrefixedMap<Value> for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StoragePrefixedMap<Value> for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
MaxValues: Get<Option<u32>>,
source§fn module_prefix() -> &'static [u8] ⓘ
fn module_prefix() -> &'static [u8] ⓘ
source§fn storage_prefix() -> &'static [u8] ⓘ
fn storage_prefix() -> &'static [u8] ⓘ
source§fn final_prefix() -> [u8; 32]
fn final_prefix() -> [u8; 32]
source§fn remove_all(limit: Option<u32>) -> KillStorageResult
fn remove_all(limit: Option<u32>) -> KillStorageResult
clear
insteadlimit
in the backend. Read moresource§fn clear(limit: u32, maybe_cursor: Option<&[u8]>) -> MultiRemovalResults
fn clear(limit: u32, maybe_cursor: Option<&[u8]>) -> MultiRemovalResults
source§fn iter_values() -> PrefixIterator<Value> ⓘ
fn iter_values() -> PrefixIterator<Value> ⓘ
Auto Trait Implementations§
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> RefUnwindSafe for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Hasher: RefUnwindSafe,
Key: RefUnwindSafe,
MaxValues: RefUnwindSafe,
OnEmpty: RefUnwindSafe,
Prefix: RefUnwindSafe,
QueryKind: RefUnwindSafe,
Value: RefUnwindSafe,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> Send for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Hasher: Send,
Key: Send,
MaxValues: Send,
OnEmpty: Send,
Prefix: Send,
QueryKind: Send,
Value: Send,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> Sync for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Hasher: Sync,
Key: Sync,
MaxValues: Sync,
OnEmpty: Sync,
Prefix: Sync,
QueryKind: Sync,
Value: Sync,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> Unpin for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Hasher: Unpin,
Key: Unpin,
MaxValues: Unpin,
OnEmpty: Unpin,
Prefix: Unpin,
QueryKind: Unpin,
Value: Unpin,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> UnwindSafe for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Hasher: UnwindSafe,
Key: UnwindSafe,
MaxValues: UnwindSafe,
OnEmpty: UnwindSafe,
Prefix: UnwindSafe,
QueryKind: UnwindSafe,
Value: UnwindSafe,
Blanket Implementations§
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§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 moresource§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 moresource§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 moresource§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> FmtForward for T
impl<T> FmtForward for T
source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
source§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>
source§impl<T, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
source§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 moresource§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 moresource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> Rwhere
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> Rwhere
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
self
, then passes self.as_ref()
into the pipe function.source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
source§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 moresource§impl<K, V, G> StorageMap<K, V> for Gwhere
K: FullEncode,
V: FullCodec,
G: StorageMap<K, V>,
impl<K, V, G> StorageMap<K, V> for Gwhere
K: FullEncode,
V: FullCodec,
G: StorageMap<K, V>,
source§fn hashed_key_for<KeyArg>(key: KeyArg) -> Vec<u8, Global> ⓘwhere
KeyArg: EncodeLike<K>,
fn hashed_key_for<KeyArg>(key: KeyArg) -> Vec<u8, Global> ⓘwhere
KeyArg: EncodeLike<K>,
source§fn swap<KeyArg1, KeyArg2>(key1: KeyArg1, key2: KeyArg2)where
KeyArg1: EncodeLike<K>,
KeyArg2: EncodeLike<K>,
fn swap<KeyArg1, KeyArg2>(key1: KeyArg1, key2: KeyArg2)where
KeyArg1: EncodeLike<K>,
KeyArg2: EncodeLike<K>,
source§fn contains_key<KeyArg>(key: KeyArg) -> boolwhere
KeyArg: EncodeLike<K>,
fn contains_key<KeyArg>(key: KeyArg) -> boolwhere
KeyArg: EncodeLike<K>,
source§fn get<KeyArg>(key: KeyArg) -> <G as StorageMap<K, V>>::Querywhere
KeyArg: EncodeLike<K>,
fn get<KeyArg>(key: KeyArg) -> <G as StorageMap<K, V>>::Querywhere
KeyArg: EncodeLike<K>,
source§fn try_get<KeyArg>(key: KeyArg) -> Result<V, ()>where
KeyArg: EncodeLike<K>,
fn try_get<KeyArg>(key: KeyArg) -> Result<V, ()>where
KeyArg: EncodeLike<K>,
source§fn set<KeyArg>(key: KeyArg, q: <G as StorageMap<K, V>>::Query)where
KeyArg: EncodeLike<K>,
fn set<KeyArg>(key: KeyArg, q: <G as StorageMap<K, V>>::Query)where
KeyArg: EncodeLike<K>,
key
so that get
returns the query
.source§fn insert<KeyArg, ValArg>(key: KeyArg, val: ValArg)where
KeyArg: EncodeLike<K>,
ValArg: EncodeLike<V>,
fn insert<KeyArg, ValArg>(key: KeyArg, val: ValArg)where
KeyArg: EncodeLike<K>,
ValArg: EncodeLike<V>,
source§fn remove<KeyArg>(key: KeyArg)where
KeyArg: EncodeLike<K>,
fn remove<KeyArg>(key: KeyArg)where
KeyArg: EncodeLike<K>,
source§fn mutate<KeyArg, R, F>(key: KeyArg, f: F) -> Rwhere
KeyArg: EncodeLike<K>,
F: FnOnce(&mut <G as StorageMap<K, V>>::Query) -> R,
fn mutate<KeyArg, R, F>(key: KeyArg, f: F) -> Rwhere
KeyArg: EncodeLike<K>,
F: FnOnce(&mut <G as StorageMap<K, V>>::Query) -> R,
source§fn mutate_exists<KeyArg, R, F>(key: KeyArg, f: F) -> Rwhere
KeyArg: EncodeLike<K>,
F: FnOnce(&mut Option<V>) -> R,
fn mutate_exists<KeyArg, R, F>(key: KeyArg, f: F) -> Rwhere
KeyArg: EncodeLike<K>,
F: FnOnce(&mut Option<V>) -> R,
source§fn try_mutate<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>where
KeyArg: EncodeLike<K>,
F: FnOnce(&mut <G as StorageMap<K, V>>::Query) -> Result<R, E>,
fn try_mutate<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>where
KeyArg: EncodeLike<K>,
F: FnOnce(&mut <G as StorageMap<K, V>>::Query) -> Result<R, E>,
Ok
value is returned.source§fn try_mutate_exists<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>where
KeyArg: EncodeLike<K>,
F: FnOnce(&mut Option<V>) -> Result<R, E>,
fn try_mutate_exists<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>where
KeyArg: EncodeLike<K>,
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 moresource§fn take<KeyArg>(key: KeyArg) -> <G as StorageMap<K, V>>::Querywhere
KeyArg: EncodeLike<K>,
fn take<KeyArg>(key: KeyArg) -> <G as StorageMap<K, V>>::Querywhere
KeyArg: EncodeLike<K>,
source§fn append<Item, EncodeLikeItem, EncodeLikeKey>(
key: EncodeLikeKey,
item: EncodeLikeItem
)where
EncodeLikeKey: EncodeLike<K>,
Item: Encode,
EncodeLikeItem: EncodeLike<Item>,
V: StorageAppend<Item>,
fn append<Item, EncodeLikeItem, EncodeLikeKey>(
key: EncodeLikeKey,
item: EncodeLikeItem
)where
EncodeLikeKey: EncodeLike<K>,
Item: Encode,
EncodeLikeItem: EncodeLike<Item>,
V: StorageAppend<Item>,
source§fn migrate_key<OldHasher, KeyArg>(key: KeyArg) -> Option<V>where
OldHasher: StorageHasher,
KeyArg: EncodeLike<K>,
fn migrate_key<OldHasher, KeyArg>(key: KeyArg) -> Option<V>where
OldHasher: StorageHasher,
KeyArg: EncodeLike<K>,
source§fn decode_len<KeyArg: EncodeLike<K>>(key: KeyArg) -> Option<usize>where
V: StorageDecodeLength,
fn decode_len<KeyArg: EncodeLike<K>>(key: KeyArg) -> Option<usize>where
V: StorageDecodeLength,
key
. Read moresource§fn migrate_key_from_blake<KeyArg: EncodeLike<K>>(key: KeyArg) -> Option<V>
fn migrate_key_from_blake<KeyArg: EncodeLike<K>>(key: KeyArg) -> Option<V>
source§impl<T> Tap for T
impl<T> Tap for T
source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
Borrow<B>
of a value. Read moresource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
BorrowMut<B>
of a value. Read moresource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
AsRef<R>
view of a value. Read moresource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
AsMut<R>
view of a value. Read moresource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere
Self: Deref<Target = T>,
T: ?Sized,
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere
Self: Deref<Target = T>,
T: ?Sized,
Deref::Target
of a value. Read moresource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
Deref::Target
of a value. Read moresource§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.source§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. Read moresource§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
.tap_borrow()
only in debug builds, and is erased in release
builds. Read moresource§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
.tap_borrow_mut()
only in debug builds, and is erased in release
builds. Read moresource§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
.tap_ref()
only in debug builds, and is erased in release
builds. Read moresource§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
.tap_ref_mut()
only in debug builds, and is erased in release
builds. Read moresource§impl<K, T, I, StorageMapT> TryAppendMap<K, T, I> for StorageMapTwhere
K: FullCodec,
T: FullCodec + StorageTryAppend<I>,
I: Encode,
StorageMapT: StorageMap<K, T>,
impl<K, T, I, StorageMapT> TryAppendMap<K, T, I> for StorageMapTwhere
K: FullCodec,
T: FullCodec + StorageTryAppend<I>,
I: Encode,
StorageMapT: StorageMap<K, T>,
source§fn try_append<LikeK, LikeI>(key: LikeK, item: LikeI) -> Result<(), ()>where
LikeK: EncodeLike<K> + Clone,
LikeI: EncodeLike<I>,
fn try_append<LikeK, LikeI>(key: LikeK, item: LikeI) -> Result<(), ()>where
LikeK: EncodeLike<K> + Clone,
LikeI: EncodeLike<I>,
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 Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.