pub struct CountedStorageMap<Prefix, Hasher, Key, Value, QueryKind = OptionQuery, OnEmpty = GetDefault, MaxValues = GetDefault>(_);
Expand description
A wrapper around a StorageMap
and a StorageValue<Value=u32>
to keep track of how many items
are in a map, without needing to iterate all the values.
This storage item has 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.
Implementations§
§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> CountedStorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageMapInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> CountedStorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageMapInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
MaxValues: Get<Option<u32>>,
pub 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.
pub fn map_storage_final_prefix() -> Vec<u8, Global> ⓘ
pub fn map_storage_final_prefix() -> Vec<u8, Global> ⓘ
The prefix used to generate the key of the map.
pub fn hashed_key_for<KeyArg>(key: KeyArg) -> Vec<u8, Global> ⓘwhere
KeyArg: EncodeLike<Key>,
pub fn hashed_key_for<KeyArg>(key: KeyArg) -> Vec<u8, Global> ⓘwhere
KeyArg: EncodeLike<Key>,
Get the storage key used to fetch a value corresponding to a specific key.
pub fn contains_key<KeyArg>(key: KeyArg) -> boolwhere
KeyArg: EncodeLike<Key>,
pub fn contains_key<KeyArg>(key: KeyArg) -> boolwhere
KeyArg: EncodeLike<Key>,
Does the value (explicitly) exist in storage?
pub fn get<KeyArg>(
key: KeyArg
) -> <QueryKind as QueryKindTrait<Value, OnEmpty>>::Querywhere
KeyArg: EncodeLike<Key>,
pub fn get<KeyArg>(
key: KeyArg
) -> <QueryKind as QueryKindTrait<Value, OnEmpty>>::Querywhere
KeyArg: EncodeLike<Key>,
Load the value associated with the given key from the map.
pub fn try_get<KeyArg>(key: KeyArg) -> Result<Value, ()>where
KeyArg: EncodeLike<Key>,
pub fn try_get<KeyArg>(key: KeyArg) -> Result<Value, ()>where
KeyArg: EncodeLike<Key>,
Try to get the value for the given key from the map.
Returns Ok
if it exists, Err
if not.
pub fn set<KeyArg>(
key: KeyArg,
q: <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query
)where
KeyArg: EncodeLike<Key>,
pub fn set<KeyArg>(
key: KeyArg,
q: <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query
)where
KeyArg: EncodeLike<Key>,
Store or remove the value to be associated with key
so that get
returns the query
.
pub fn swap<KeyArg1, KeyArg2>(key1: KeyArg1, key2: KeyArg2)where
KeyArg1: EncodeLike<Key>,
KeyArg2: EncodeLike<Key>,
pub fn swap<KeyArg1, KeyArg2>(key1: KeyArg1, key2: KeyArg2)where
KeyArg1: EncodeLike<Key>,
KeyArg2: EncodeLike<Key>,
Swap the values of two keys.
pub fn insert<KeyArg, ValArg>(key: KeyArg, val: ValArg)where
KeyArg: EncodeLike<Key> + Clone,
ValArg: EncodeLike<Value>,
pub fn insert<KeyArg, ValArg>(key: KeyArg, val: ValArg)where
KeyArg: EncodeLike<Key> + Clone,
ValArg: EncodeLike<Value>,
Store a value to be associated with the given key from the map.
pub fn remove<KeyArg>(key: KeyArg)where
KeyArg: EncodeLike<Key> + Clone,
pub fn remove<KeyArg>(key: KeyArg)where
KeyArg: EncodeLike<Key> + Clone,
Remove the value under a key.
pub fn mutate<KeyArg, R, F>(key: KeyArg, f: F) -> Rwhere
KeyArg: EncodeLike<Key> + Clone,
F: FnOnce(&mut <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query) -> R,
pub fn mutate<KeyArg, R, F>(key: KeyArg, f: F) -> Rwhere
KeyArg: EncodeLike<Key> + Clone,
F: FnOnce(&mut <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query) -> R,
Mutate the value under a key.
pub fn try_mutate<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>where
KeyArg: EncodeLike<Key> + Clone,
F: FnOnce(&mut <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query) -> Result<R, E>,
pub fn try_mutate<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>where
KeyArg: EncodeLike<Key> + Clone,
F: FnOnce(&mut <QueryKind as QueryKindTrait<Value, OnEmpty>>::Query) -> Result<R, E>,
Mutate the item, only if an Ok
value is returned.
pub fn mutate_exists<KeyArg, R, F>(key: KeyArg, f: F) -> Rwhere
KeyArg: EncodeLike<Key> + Clone,
F: FnOnce(&mut Option<Value>) -> R,
pub fn mutate_exists<KeyArg, R, F>(key: KeyArg, f: F) -> Rwhere
KeyArg: EncodeLike<Key> + Clone,
F: FnOnce(&mut Option<Value>) -> R,
Mutate the value under a key. Deletes the item if mutated to a None
.
pub fn try_mutate_exists<KeyArg, R, E, F>(key: KeyArg, f: F) -> Result<R, E>where
KeyArg: EncodeLike<Key> + Clone,
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> + Clone,
F: FnOnce(&mut Option<Value>) -> Result<R, E>,
Mutate the item, only if an Ok
value is returned. Deletes the item if mutated to a None
.
f
will always be called with an option representing if the storage item exists (Some<V>
)
or if the storage item does not exist (None
), independent of the QueryType
.
pub fn take<KeyArg>(
key: KeyArg
) -> <QueryKind as QueryKindTrait<Value, OnEmpty>>::Querywhere
KeyArg: EncodeLike<Key> + Clone,
pub fn take<KeyArg>(
key: KeyArg
) -> <QueryKind as QueryKindTrait<Value, OnEmpty>>::Querywhere
KeyArg: EncodeLike<Key> + Clone,
Take the value under a key.
pub fn append<Item, EncodeLikeItem, EncodeLikeKey>(
key: EncodeLikeKey,
item: EncodeLikeItem
)where
EncodeLikeKey: EncodeLike<Key> + Clone,
Item: Encode,
EncodeLikeItem: EncodeLike<Item>,
Value: StorageAppend<Item>,
pub fn append<Item, EncodeLikeItem, EncodeLikeKey>(
key: EncodeLikeKey,
item: EncodeLikeItem
)where
EncodeLikeKey: EncodeLike<Key> + Clone,
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.
pub fn decode_len<KeyArg>(key: KeyArg) -> Option<usize>where
KeyArg: EncodeLike<Key>,
Value: StorageDecodeLength,
pub fn decode_len<KeyArg>(key: KeyArg) -> Option<usize>where
KeyArg: EncodeLike<Key>,
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.
pub fn migrate_key<OldHasher, KeyArg>(key: KeyArg) -> Option<Value>where
OldHasher: StorageHasher,
KeyArg: EncodeLike<Key>,
pub fn migrate_key<OldHasher, KeyArg>(key: KeyArg) -> Option<Value>where
OldHasher: StorageHasher,
KeyArg: EncodeLike<Key>,
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.
pub fn remove_all()
👎Deprecated: Use clear
instead
pub fn remove_all()
clear
insteadRemove all values in the map.
pub fn clear(limit: u32, maybe_cursor: Option<&[u8]>) -> MultiRemovalResults
pub fn clear(limit: u32, maybe_cursor: Option<&[u8]>) -> MultiRemovalResults
Attempt to remove all items from the map.
Returns MultiRemovalResults
to inform about the result. Once
the resultant maybe_cursor
field is None
, then no further items remain to be deleted.
NOTE: After the initial call for any given map, it is important that no further items
are inserted into the map. If so, then the map may not be empty when the resultant
maybe_cursor
is None
.
Limit
A limit
must always be provided through in order to cap the maximum
amount of deletions done in a single call. This is one fewer than the
maximum number of backend iterations which may be done by this operation and as such
represents the maximum number of backend deletions which may happen. A limit
of zero
implies that no keys will be deleted, though there may be a single iteration done.
Cursor
A cursor may be passed in to this operation with maybe_cursor
. None
should only be
passed once (in the initial call) for any given storage map. Subsequent calls
operating on the same map should always pass Some
, and this should be equal to the
previous call result’s maybe_cursor
field.
pub fn iter_values() -> PrefixIterator<Value, OnRemovalCounterUpdate<Prefix>> ⓘ
pub fn iter_values() -> PrefixIterator<Value, OnRemovalCounterUpdate<Prefix>> ⓘ
Iter over all value of the storage.
NOTE: If a value failed to decode because storage is corrupted then it is skipped.
pub fn translate_values<OldValue, F>(f: F)where
OldValue: Decode,
F: FnMut(OldValue) -> Option<Value>,
pub fn translate_values<OldValue, F>(f: F)where
OldValue: Decode,
F: FnMut(OldValue) -> Option<Value>,
Translate the values of all elements by a function f
, in the map in no particular order.
By returning None
from f
for an element, you’ll remove it from the map.
NOTE: If a value fail to decode because storage is corrupted then it is skipped.
Warning
This function must be used with care, before being updated the storage still contains the
old type, thus other calls (such as get
) will fail at decoding it.
Usage
This would typically be called inside the module implementation of on_runtime_upgrade.
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>,
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
.
pub 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.
§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> CountedStorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageMapInstance,
Hasher: StorageHasher + ReversibleStorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> CountedStorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageMapInstance,
Hasher: StorageHasher + ReversibleStorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
MaxValues: Get<Option<u32>>,
pub fn iter() -> PrefixIterator<(Key, Value), OnRemovalCounterUpdate<Prefix>> ⓘ
pub fn iter() -> PrefixIterator<(Key, Value), OnRemovalCounterUpdate<Prefix>> ⓘ
Enumerate all elements in the map in no particular order.
If you alter the map while doing this, you’ll get undefined results.
pub fn drain() -> PrefixIterator<(Key, Value), OnRemovalCounterUpdate<Prefix>> ⓘ
pub fn drain() -> PrefixIterator<(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.
pub fn translate<O, F>(f: F)where
O: Decode,
F: FnMut(Key, O) -> Option<Value>,
pub fn translate<O, F>(f: F)where
O: Decode,
F: FnMut(Key, O) -> Option<Value>,
Translate the values of all elements by a function f
, in the map in no particular order.
By returning None
from f
for an element, you’ll remove it from the map.
NOTE: If a value fail to decode because storage is corrupted then it is skipped.
pub fn iter_from(
starting_raw_key: Vec<u8, Global>
) -> PrefixIterator<(Key, Value), OnRemovalCounterUpdate<Prefix>> ⓘ
pub fn iter_from(
starting_raw_key: Vec<u8, Global>
) -> PrefixIterator<(Key, Value), OnRemovalCounterUpdate<Prefix>> ⓘ
Enumerate all elements in the counted map after a specified starting_raw_key
in no
particular order.
If you alter the map while doing this, you’ll get undefined results.
pub fn iter_keys() -> KeyPrefixIterator<Key> ⓘ
pub fn iter_keys() -> KeyPrefixIterator<Key> ⓘ
Enumerate all keys in the counted map.
If you alter the map while doing this, you’ll get undefined results.
Trait Implementations§
§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> PartialStorageInfoTrait for CountedStorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageMapInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> PartialStorageInfoTrait for CountedStorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageMapInstance,
Hasher: StorageHasher,
Key: FullCodec,
Value: FullCodec,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
MaxValues: Get<Option<u32>>,
It doesn’t require to implement MaxEncodedLen
and give no information for max_size
.
fn partial_storage_info() -> Vec<StorageInfo, Global> ⓘ
§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageEntryMetadataBuilder for CountedStorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageMapInstance,
Hasher: StorageHasher,
Key: FullCodec + StaticTypeInfo,
Value: FullCodec + StaticTypeInfo,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageEntryMetadataBuilder for CountedStorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageMapInstance,
Hasher: StorageHasher,
Key: FullCodec + StaticTypeInfo,
Value: FullCodec + StaticTypeInfo,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
MaxValues: Get<Option<u32>>,
§impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageInfoTrait for CountedStorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageMapInstance,
Hasher: StorageHasher,
Key: FullCodec + MaxEncodedLen,
Value: FullCodec + MaxEncodedLen,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
MaxValues: Get<Option<u32>>,
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> StorageInfoTrait for CountedStorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Prefix: CountedStorageMapInstance,
Hasher: StorageHasher,
Key: FullCodec + MaxEncodedLen,
Value: FullCodec + MaxEncodedLen,
QueryKind: QueryKindTrait<Value, OnEmpty>,
OnEmpty: 'static + Get<<QueryKind as QueryKindTrait<Value, OnEmpty>>::Query>,
MaxValues: Get<Option<u32>>,
fn storage_info() -> Vec<StorageInfo, Global> ⓘ
Auto Trait Implementations§
impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> RefUnwindSafe for CountedStorageMap<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 CountedStorageMap<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 CountedStorageMap<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 CountedStorageMap<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 CountedStorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>where
Hasher: UnwindSafe,
Key: UnwindSafe,
MaxValues: UnwindSafe,
OnEmpty: UnwindSafe,
Prefix: UnwindSafe,
QueryKind: UnwindSafe,
Value: UnwindSafe,
Blanket Implementations§
§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read moresource§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
T
. Read more§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
T
. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.