pub trait StoreObjs {
    fn insert(&mut self, key: OsmId, value: OsmObj);
fn contains_key(&self, key: &OsmId) -> bool; }
Expand description

Trait to allow generic objects (not just BTreeMap) in some methods.

Required methods

Insert given object at given key index.

Check if object contains the given key.

Implementations on Foreign Types

Implementors