pub trait KeyXorValue<K, V> {
    // Required methods
    fn key_ref(&self) -> &K;
    fn key(self) -> K;
    fn value(self) -> V;
}

Required Methods§

source

fn key_ref(&self) -> &K

source

fn key(self) -> K

source

fn value(self) -> V

Implementors§

source§

impl<K, V> KeyXorValue<K, V> for KeyValue<K, V>

source§

impl<V> KeyXorValue<V, V> for JustValue<V>