[][src]Struct ichen_openprotocol::KeyValuePair

pub struct KeyValuePair<K, V> { /* fields omitted */ }

A general data structure holding a key and value pair.

Methods

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

pub fn key(&self) -> K[src]

Get the key.

Examples

let kv = KeyValuePair::new("TheKey", 42.0);
assert_eq!("TheKey", kv.key());

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

pub fn value(&self) -> V[src]

Get the value.

Examples

let kv = KeyValuePair::new("TheKey", 42.0);
assert_eq!(42.0, kv.value());

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

pub fn key_ref(&self) -> &K[src]

Get the key.

Examples

let kv = KeyValuePair::new("TheKey", 42.0);
assert_eq!("TheKey", *kv.key_ref());

pub fn value_ref(&self) -> &V[src]

Get the value.

Examples

let kv = KeyValuePair::new("TheKey", 42.0);
assert_eq!(42.0, *kv.value_ref());

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

Create a KewValuePair.

Examples

let kv = KeyValuePair::new("TheKey", 42.0);
assert_eq!("TheKey", kv.key());
assert_eq!(42.0, kv.value());

Trait Implementations

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,