pub trait SetItem<K, V> where
    K: _Hashable,
    V: _Object + Sized
{ fn set(&mut self, key: K, value: V); }

Required methods

Implementors