pub trait AutoBinder<K, V>where
    K: Eq + Hash,{
    // Required methods
    fn bind(&mut self, key: K, value: V) -> &mut Self;
    fn unbind(&mut self, key: K) -> &mut Self;
}

Required Methods§

source

fn bind(&mut self, key: K, value: V) -> &mut Self

source

fn unbind(&mut self, key: K) -> &mut Self

Implementations on Foreign Types§

source§

impl<K, V> AutoBinder<K, V> for HashMap<K, V>where K: Eq + Hash,

source§

fn bind(&mut self, key: K, value: V) -> &mut Self

source§

fn unbind(&mut self, key: K) -> &mut Self

Implementors§