pub struct OptionMap<K, V>(pub Option<(K, V)>);
Expand description

A key-value entry wrapper around Option<(K, V)> representing a singleton or empty map.

Tuple Fields§

§0: Option<(K, V)>

Trait Implementations§

source§

impl<K: Clone, V: Clone> Clone for OptionMap<K, V>

source§

fn clone(&self) -> OptionMap<K, V>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<K, V> Collection for OptionMap<K, V>

§

type Item = V

Type of the items of the collection.
source§

impl<K, V> CollectionMut for OptionMap<K, V>

§

type ItemMut<'a> = &'a mut <OptionMap<K, V> as Collection>::Item where Self: 'a

Type of mutable references to items of the collection.
source§

fn upcast_item_mut<'short, 'long: 'short>( r: Self::ItemMut<'long> ) -> Self::ItemMut<'short>
where Self: 'long,

Changes an item mutable reference into a shorter lived mutable reference. Read more
source§

impl<K, V> CollectionRef for OptionMap<K, V>

§

type ItemRef<'a> = &'a <OptionMap<K, V> as Collection>::Item where Self: 'a

Type of references to items of the collection.
source§

fn upcast_item_ref<'short, 'long: 'short>( r: Self::ItemRef<'long> ) -> Self::ItemRef<'short>
where Self: 'long,

Changes an item reference into a shorter lived reference. Read more
source§

impl<K: Debug, V: Debug> Debug for OptionMap<K, V>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<K, V> Default for OptionMap<K, V>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de, K, V> Deserialize<'de> for OptionMap<K, V>
where K: Deserialize<'de>, V: Deserialize<'de>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<K, V, U> From<U> for OptionMap<K, V>
where U: Into<Option<(K, V)>>,

source§

fn from(kv: U) -> Self

Converts to this type from the input type.
source§

impl<'a, Q, K, V> Get<&'a Q> for OptionMap<K, V>
where K: Borrow<Q>, Q: Eq + ?Sized,

source§

fn get(&self, key: &'a Q) -> Option<Self::ItemRef<'_>>

Returns a reference to the item stored behind the given key (if any).
§

fn contains(&self, key: T) -> bool

Checks if the collection contains an item behind the given key.
source§

impl<'a, Q, K, V> GetKeyValue<&'a Q> for OptionMap<K, V>
where K: Borrow<Q>, Q: Eq + ?Sized,

source§

fn get_key_value( &self, key: &'a Q ) -> Option<(Self::KeyRef<'_>, Self::ItemRef<'_>)>

Returns the key-value pair matching the given key.
source§

impl<'a, Q, K, V> GetKeyValueMut<&'a Q> for OptionMap<K, V>
where K: Borrow<Q>, Q: Eq + ?Sized,

source§

fn get_key_value_mut( &mut self, key: &'a Q ) -> Option<(Self::KeyRef<'_>, Self::ItemMut<'_>)>

Returns the key-value pair matching the given key, with a mutable reference to the value.
source§

impl<'a, Q, K, V> GetMut<&'a Q> for OptionMap<K, V>
where K: Borrow<Q>, Q: Eq + ?Sized,

source§

fn get_mut(&mut self, key: &'a Q) -> Option<Self::ItemMut<'_>>

Returns a mutable reference to the item stored behind the given key (if any).
source§

impl<K: Hash, V: Hash> Hash for OptionMap<K, V>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<K, V> IntoIterator for OptionMap<K, V>

§

type Item = (K, V)

The type of the elements being iterated over.
§

type IntoIter = IntoIter<(K, V)>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<K, V> Iter for OptionMap<K, V>

§

type Iter<'a> = IntoIter<&'a V> where Self: 'a

Iterator type.
source§

fn iter(&self) -> Self::Iter<'_>

Create an iterator over the items of the collection.
source§

impl<K, V> Keyed for OptionMap<K, V>

§

type Key = K

Type of the keys indexing each item of the collection.
source§

impl<K, V> KeyedRef for OptionMap<K, V>

§

type KeyRef<'a> = &'a <OptionMap<K, V> as Keyed>::Key where Self: 'a

Type of references to keys of the collection.
source§

fn upcast_key_ref<'short, 'long: 'short>( r: Self::KeyRef<'long> ) -> Self::KeyRef<'short>
where Self: 'long,

Changes a key reference into a shorter lived reference. Read more
source§

impl<K, V> Len for OptionMap<K, V>

source§

fn len(&self) -> usize

Returns the number of elements in the collection.
§

fn is_empty(&self) -> bool

Checks if the collection is empty.
source§

impl<K, V> MapIter for OptionMap<K, V>

§

type Iter<'a> = IntoIter<(&'a K, &'a V)> where Self: 'a

source§

fn iter(&self) -> Self::Iter<'_>

source§

impl<K, V> MapIterMut for OptionMap<K, V>

§

type IterMut<'a> = IntoIter<(&'a K, &'a mut V)> where Self: 'a

source§

fn iter_mut(&mut self) -> Self::IterMut<'_>

source§

impl<K, OldVal> MapMapValues<OldVal> for OptionMap<K, OldVal>

§

type MapValue<NewVal> = OptionMap<K, NewVal>

Output type, should be Self but with OldVal replaced with NewVal.
source§

fn map_values<NewVal, MapFn>(self, map_fn: MapFn) -> Self::MapValue<NewVal>
where MapFn: FnMut(OldVal) -> NewVal,

Map the values into using the map_fn.
source§

impl<K: Ord, V: Ord> Ord for OptionMap<K, V>

source§

fn cmp(&self, other: &OptionMap<K, V>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<K: PartialEq, V: PartialEq> PartialEq for OptionMap<K, V>

source§

fn eq(&self, other: &OptionMap<K, V>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<K: PartialOrd, V: PartialOrd> PartialOrd for OptionMap<K, V>

source§

fn partial_cmp(&self, other: &OptionMap<K, V>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<K, V> Serialize for OptionMap<K, V>
where K: Serialize, V: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<K, V> SimpleCollectionRef for OptionMap<K, V>

source§

fn into_ref<'r>(r: Self::ItemRef<'r>) -> &'r Self::Item
where Self: 'r,

source§

impl<K, V> SimpleKeyedRef for OptionMap<K, V>

source§

fn into_ref<'r>(r: Self::KeyRef<'r>) -> &'r Self::Key
where Self: 'r,

source§

impl<K: Copy, V: Copy> Copy for OptionMap<K, V>

source§

impl<K: Eq, V: Eq> Eq for OptionMap<K, V>

source§

impl<K, V> StructuralPartialEq for OptionMap<K, V>

Auto Trait Implementations§

§

impl<K, V> Freeze for OptionMap<K, V>
where K: Freeze, V: Freeze,

§

impl<K, V> RefUnwindSafe for OptionMap<K, V>

§

impl<K, V> Send for OptionMap<K, V>
where K: Send, V: Send,

§

impl<K, V> Sync for OptionMap<K, V>
where K: Sync, V: Sync,

§

impl<K, V> Unpin for OptionMap<K, V>
where K: Unpin, V: Unpin,

§

impl<K, V> UnwindSafe for OptionMap<K, V>
where K: UnwindSafe, V: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<K, V, C> Map<K, V> for C
where C: Keyed<Key = K, Item = V> + Len + for<'a> Get<&'a K> + for<'a> GetKeyValue<&'a K>,

§

impl<T, C> Set<T> for C
where C: Collection<Item = T> + Len + for<'a> Get<&'a T>,