Trait former_runtime::HashmapLike[][src]

pub trait HashmapLike<K, E> where
    K: Eq + Hash
{ fn insert(&mut self, k: K, e: E) -> Option<E>; }
Expand description

Trait HashmapLike adopter for Hashmap-like containers.

Required methods

Inserts a key-value pair into the map.

Implementations on Foreign Types

Implementors