[][src]Struct ichen_openprotocol::KeyValuePair

pub struct KeyValuePair<K, V> {
    pub key: K,
    pub value: V,
}

A general data structure holding a key and value pair.

Fields

key: Kvalue: V

Methods

impl<K, V> KeyValuePair<K, V>[src]

pub fn new(key: K, value: V) -> Self[src]

Trait Implementations

impl<K: PartialEq, V: PartialEq> PartialEq<KeyValuePair<K, V>> for KeyValuePair<K, V>[src]

impl<K: Debug, V: Debug> Debug for KeyValuePair<K, V>[src]

impl<K, V> Serialize for KeyValuePair<K, V> where
    K: Serialize,
    V: Serialize
[src]

impl<'de, K, V> Deserialize<'de> for KeyValuePair<K, V> where
    K: Deserialize<'de>,
    V: Deserialize<'de>, 
[src]

Auto Trait Implementations

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

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

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

impl<K, V> RefUnwindSafe for KeyValuePair<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe

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

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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