pub struct BTreeMapDefinitionTypes<K, E, Context = (), Formed = BTreeMap<K, E>> { /* private fields */ }Expand description
Holds the generic parameters for the BTreeMapDefinition.
This companion struct to BTreeMapDefinition defines the storage type and the context, along with the
type that is ultimately formed through the process. It is crucial for maintaining the integrity and
consistency of type relations throughout the former lifecycle.
§Type Parameters
K: The key type of the hash map.E: The value type of the hash map.Context: The operational context in which the hash map is formed.Formed: The type produced, typically mirroring the structure of aBTreeMap< K, E >.
Trait Implementations§
Source§impl<K: Debug, E: Debug, Context: Debug, Formed: Debug> Debug for BTreeMapDefinitionTypes<K, E, Context, Formed>
impl<K: Debug, E: Debug, Context: Debug, Formed: Debug> Debug for BTreeMapDefinitionTypes<K, E, Context, Formed>
Source§impl<K: Default, E: Default, Context: Default, Formed: Default> Default for BTreeMapDefinitionTypes<K, E, Context, Formed>
impl<K: Default, E: Default, Context: Default, Formed: Default> Default for BTreeMapDefinitionTypes<K, E, Context, Formed>
Source§fn default() -> BTreeMapDefinitionTypes<K, E, Context, Formed>
fn default() -> BTreeMapDefinitionTypes<K, E, Context, Formed>
Returns the “default value” for a type. Read more
Source§impl<K, E, Context, Formed> FormerDefinitionTypes for BTreeMapDefinitionTypes<K, E, Context, Formed>where
K: Ord,
impl<K, E, Context, Formed> FormerDefinitionTypes for BTreeMapDefinitionTypes<K, E, Context, Formed>where
K: Ord,
Source§impl<K, E, Context, Formed> FormerMutator for BTreeMapDefinitionTypes<K, E, Context, Formed>where
K: Ord,
impl<K, E, Context, Formed> FormerMutator for BTreeMapDefinitionTypes<K, E, Context, Formed>where
K: Ord,
Auto Trait Implementations§
impl<K, E, Context, Formed> Freeze for BTreeMapDefinitionTypes<K, E, Context, Formed>
impl<K, E, Context, Formed> RefUnwindSafe for BTreeMapDefinitionTypes<K, E, Context, Formed>
impl<K, E, Context, Formed> Send for BTreeMapDefinitionTypes<K, E, Context, Formed>
impl<K, E, Context, Formed> Sync for BTreeMapDefinitionTypes<K, E, Context, Formed>
impl<K, E, Context, Formed> Unpin for BTreeMapDefinitionTypes<K, E, Context, Formed>
impl<K, E, Context, Formed> UnwindSafe for BTreeMapDefinitionTypes<K, E, Context, Formed>
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
Mutably borrows from an owned value. Read more
Source§impl<C, E> EntryToVal<C> for Ewhere
C: Collection<Entry = E>,
impl<C, E> EntryToVal<C> for Ewhere
C: Collection<Entry = E>,
Source§type Val = <C as Collection>::Val
type Val = <C as Collection>::Val
The type of values stored in the collection. This might be distinct from
Entry in complex collections.
For example, in a HashMap, while Entry might be a ( key, value ) tuple, Val might only be the value part.Source§fn entry_to_val(self) -> <E as EntryToVal<C>>::Val
fn entry_to_val(self) -> <E as EntryToVal<C>>::Val
Converts an entry into a value representation specific to the type of collection. This conversion is crucial
for handling operations on entries, especially when they need to be treated or accessed as individual values,
such as retrieving the value part from a key-value pair in a hash map.
Source§impl<C, Val> ValToEntry<C> for Valwhere
C: CollectionValToEntry<Val>,
impl<C, Val> ValToEntry<C> for Valwhere
C: CollectionValToEntry<Val>,
Source§fn val_to_entry(self) -> <C as CollectionValToEntry<Val>>::Entry
fn val_to_entry(self) -> <C as CollectionValToEntry<Val>>::Entry
Invokes the val_to_entry function of the CollectionValToEntry trait to convert the value to an entry.
Source§type Entry = <C as CollectionValToEntry<Val>>::Entry
type Entry = <C as CollectionValToEntry<Val>>::Entry
Represents the type of entry that corresponds to the value within the collection.
Type
Entry is defined by the Collection trait.