[][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]

Create a KewValuePair.

Examples

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

impl<K: AsRef<str>> KeyValuePair<K, bool>[src]

pub fn validate(&self) -> Result<'static, ()>[src]

Validate a KeyValuePair data structure with a string-like key and boolean value by making sure that the key cannot be empty or all whitespace.

Errors

Returns Err(OpenProtocolError::EmptyField) if key is set to an empty string or is all whitespace.

Examples

let kv = KeyValuePair::new("    ", true);
assert_eq!(r#"Err(EmptyField("key"))"#, format!("{:?}", kv.validate()));

impl<K: AsRef<str>> KeyValuePair<K, f64>[src]

pub fn validate(&self) -> Result<'static, ()>[src]

Validate a KeyValuePair data structure with a string-like key and f64 value by making sure that the key cannot be empty or all whitespace, and that the value is a valid floating-point number.

Errors

Returns Err(OpenProtocolError::EmptyField) if key is set to an empty string or is all whitespace.

Returns Err(OpenProtocolError::InvalidField) if value is not a valid floating-point number.

Examples

let kv1 = KeyValuePair::new("     ", 42.0);
assert_eq!(r#"Err(EmptyField("key"))"#, format!("{:?}", kv1.validate()));

let kv2 = KeyValuePair::new("K2", std::f64::NAN);
assert_eq!(
    r#"Err(InvalidField { field: "value", value: "NaN", description: "NaN is not a supported value" })"#,
    format!("{:?}", kv2.validate())
);

Trait Implementations

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

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

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

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

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

Feeds a slice of this type into the given [Hasher]. Read more

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]