[][src]Struct libimagutil::key_value_split::KeyValue

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

Methods

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

pub fn new(k: K, v: V) -> KeyValue<K, V>[src]

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

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

Trait Implementations

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

impl<K: Copy, V: Copy> Copy for KeyValue<K, V>[src]

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

impl<K, V> Into<(K, V)> for KeyValue<K, V>[src]

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

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

Auto Trait Implementations

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

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

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

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

impl<K, V> UnwindSafe for KeyValue<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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,