Struct frame_support::pallet_prelude::StorageMap
source · [−]pub struct StorageMap<Prefix, Hasher, Key, Value, QueryKind = OptionQuery, OnEmpty = 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
sourceimpl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
sourcepub fn hashed_key_for<KeyArg: EncodeLike<Key>>(key: KeyArg) -> Vec<u8>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
pub fn hashed_key_for<KeyArg: EncodeLike<Key>>(key: KeyArg) -> Vec<u8>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
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 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
.
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()
pub fn remove_all()
Remove all value of the storage.
sourcepub fn iter_values() -> PrefixIterator<Value>ⓘNotable traits for PrefixIterator<T>impl<T> Iterator for PrefixIterator<T> type Item = T;
pub fn iter_values() -> PrefixIterator<Value>ⓘNotable traits for PrefixIterator<T>impl<T> Iterator for PrefixIterator<T> type Item = T;
Iter over all value of the storage.
NOTE: If a value failed to decode becaues 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.
sourceimpl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> where
Prefix: StorageInstance,
Hasher: StorageHasher + ReversibleStorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> where
Prefix: StorageInstance,
Hasher: StorageHasher + ReversibleStorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
sourcepub fn iter() -> PrefixIterator<(Key, Value)>ⓘNotable traits for PrefixIterator<T>impl<T> Iterator for PrefixIterator<T> type Item = T;
pub fn iter() -> PrefixIterator<(Key, Value)>ⓘNotable traits for PrefixIterator<T>impl<T> Iterator for PrefixIterator<T> type Item = T;
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 drain() -> PrefixIterator<(Key, Value)>ⓘNotable traits for PrefixIterator<T>impl<T> Iterator for PrefixIterator<T> type Item = T;
pub fn drain() -> PrefixIterator<(Key, Value)>ⓘNotable traits for PrefixIterator<T>impl<T> Iterator for PrefixIterator<T> type Item = T;
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
sourceimpl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> StorageMapMetadata for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> StorageMapMetadata for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
const MODIFIER: StorageEntryModifier
const HASHER: StorageHasher
const NAME: &'static str
const DEFAULT: DefaultByteGetter
sourceimpl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> StoragePrefixedMap<Value> for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> StoragePrefixedMap<Value> for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> where
Prefix: StorageInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: Get<QueryKind::Query> + 'static,
sourcefn module_prefix() -> &'static [u8]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
fn module_prefix() -> &'static [u8]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
Module prefix. Used for generating final key.
sourcefn storage_prefix() -> &'static [u8]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
fn storage_prefix() -> &'static [u8]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
Storage prefix. Used for generating final key.
sourcefn final_prefix() -> [u8; 32]
fn final_prefix() -> [u8; 32]
Final full prefix that prefixes all keys.
sourcefn remove_all()
fn remove_all()
Remove all value of the storage.
sourcefn iter_values() -> PrefixIterator<Value>ⓘNotable traits for PrefixIterator<T>impl<T> Iterator for PrefixIterator<T> type Item = T;
fn iter_values() -> PrefixIterator<Value>ⓘNotable traits for PrefixIterator<T>impl<T> Iterator for PrefixIterator<T> type Item = T;
Iter over all value of the storage. Read more
Auto Trait Implementations
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> RefUnwindSafe for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> where
Hasher: RefUnwindSafe,
Key: RefUnwindSafe,
OnEmpty: RefUnwindSafe,
Prefix: RefUnwindSafe,
QueryKind: RefUnwindSafe,
Value: RefUnwindSafe,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> Send for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> where
Hasher: Send,
Key: Send,
OnEmpty: Send,
Prefix: Send,
QueryKind: Send,
Value: Send,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> Sync for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> where
Hasher: Sync,
Key: Sync,
OnEmpty: Sync,
Prefix: Sync,
QueryKind: Sync,
Value: Sync,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> Unpin for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> where
Hasher: Unpin,
Key: Unpin,
OnEmpty: Unpin,
Prefix: Unpin,
QueryKind: Unpin,
Value: Unpin,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> UnwindSafe for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty> where
Hasher: UnwindSafe,
Key: UnwindSafe,
OnEmpty: UnwindSafe,
Prefix: UnwindSafe,
QueryKind: UnwindSafe,
Value: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> CheckedConversion for T
impl<T> CheckedConversion for T
sourcefn checked_from<T>(t: T) -> Option<Self> where
Self: TryFrom<T>,
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
sourcefn checked_into<T>(self) -> Option<T> where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T> where
Self: TryInto<T>,
Consume self to return Some
equivalent value of Option<T>
. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T, Outer> IsWrappedBy<Outer> for T where
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for T where
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
sourceimpl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
sourcefn saturated_from<T>(t: T) -> Self where
Self: UniqueSaturatedFrom<T>,
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
sourcefn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of T
. Read more
sourceimpl<K, V, G> StorageMap<K, V> for G where
K: FullEncode,
V: FullCodec,
G: StorageMap<K, V>,
impl<K, V, G> StorageMap<K, V> for G where
K: FullEncode,
V: FullCodec,
G: StorageMap<K, V>,
type Query = G::Query
type Query = G::Query
The type that get/take return.
sourcefn hashed_key_for<KeyArg: EncodeLike<K>>(key: KeyArg) -> Vec<u8>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
fn hashed_key_for<KeyArg: EncodeLike<K>>(key: KeyArg) -> Vec<u8>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
Get the storage key used to fetch a value corresponding to a specific key.
sourcefn swap<KeyArg1: EncodeLike<K>, KeyArg2: EncodeLike<K>>(
key1: KeyArg1,
key2: KeyArg2
)
fn swap<KeyArg1: EncodeLike<K>, KeyArg2: EncodeLike<K>>(
key1: KeyArg1,
key2: KeyArg2
)
Swap the values of two keys.
sourcefn contains_key<KeyArg: EncodeLike<K>>(key: KeyArg) -> bool
fn contains_key<KeyArg: EncodeLike<K>>(key: KeyArg) -> bool
Does the value (explicitly) exist in storage?
sourcefn get<KeyArg: EncodeLike<K>>(key: KeyArg) -> Self::Query
fn get<KeyArg: EncodeLike<K>>(key: KeyArg) -> Self::Query
Load the value associated with the given key from the map.
sourcefn try_get<KeyArg: EncodeLike<K>>(key: KeyArg) -> Result<V, ()>
fn try_get<KeyArg: EncodeLike<K>>(key: KeyArg) -> Result<V, ()>
Try to get the value for the given key from the map. Read more
sourcefn insert<KeyArg: EncodeLike<K>, ValArg: EncodeLike<V>>(
key: KeyArg,
val: ValArg
)
fn insert<KeyArg: EncodeLike<K>, ValArg: EncodeLike<V>>(
key: KeyArg,
val: ValArg
)
Store a value to be associated with the given key from the map.
sourcefn remove<KeyArg: EncodeLike<K>>(key: KeyArg)
fn remove<KeyArg: EncodeLike<K>>(key: KeyArg)
Remove the value under a key.
sourcefn mutate<KeyArg: EncodeLike<K>, R, F: FnOnce(&mut Self::Query) -> R>(
key: KeyArg,
f: F
) -> R
fn mutate<KeyArg: EncodeLike<K>, R, F: FnOnce(&mut Self::Query) -> R>(
key: KeyArg,
f: F
) -> R
Mutate the value under a key.
sourcefn mutate_exists<KeyArg: EncodeLike<K>, R, F: FnOnce(&mut Option<V>) -> R>(
key: KeyArg,
f: F
) -> R
fn mutate_exists<KeyArg: EncodeLike<K>, R, F: FnOnce(&mut Option<V>) -> R>(
key: KeyArg,
f: F
) -> R
Mutate the value under a key. Read more
sourcefn try_mutate<KeyArg: EncodeLike<K>, R, E, F: FnOnce(&mut Self::Query) -> Result<R, E>>(
key: KeyArg,
f: F
) -> Result<R, E>
fn try_mutate<KeyArg: EncodeLike<K>, R, E, F: FnOnce(&mut Self::Query) -> Result<R, E>>(
key: KeyArg,
f: F
) -> Result<R, E>
Mutate the item, only if an Ok
value is returned.
sourcefn try_mutate_exists<KeyArg: EncodeLike<K>, R, E, F: FnOnce(&mut Option<V>) -> Result<R, E>>(
key: KeyArg,
f: F
) -> Result<R, E>
fn try_mutate_exists<KeyArg: EncodeLike<K>, R, E, F: FnOnce(&mut Option<V>) -> Result<R, E>>(
key: KeyArg,
f: F
) -> Result<R, E>
Mutate the item, only if an Ok
value is returned. Deletes the item if mutated to a None
.
sourcefn take<KeyArg: EncodeLike<K>>(key: KeyArg) -> Self::Query
fn take<KeyArg: EncodeLike<K>>(key: KeyArg) -> Self::Query
Take the value under a key.
sourcefn 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>,
Append the given items to the value in the storage. Read more
sourcefn migrate_key<OldHasher: StorageHasher, KeyArg: EncodeLike<K>>(
key: KeyArg
) -> Option<V>
fn migrate_key<OldHasher: StorageHasher, KeyArg: EncodeLike<K>>(
key: KeyArg
) -> Option<V>
Migrate an item with the given key
from a defunct OldHasher
to the current hasher. Read more
sourcefn 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,
Read the length of the storage value without decoding the entire value under the
given key
. Read more
sourcefn migrate_key_from_blake<KeyArg: EncodeLike<K>>(key: KeyArg) -> Option<V>
fn migrate_key_from_blake<KeyArg: EncodeLike<K>>(key: KeyArg) -> Option<V>
Migrate an item with the given key
from a blake2_256
hasher to the current hasher. Read more
sourceimpl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
sourcepub fn unchecked_into(self) -> T
pub fn unchecked_into(self) -> T
The counterpart to unchecked_from
.
sourceimpl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
sourcepub fn unique_saturated_into(self) -> T
pub fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of T
.