[][src]Trait osmpbfreader::reader::StoreObjs

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

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

Required methods

fn insert(&mut self, key: OsmId, value: OsmObj)

Insert given object at given key index.

fn contains_key(&self, key: &OsmId) -> bool

Check if object contains the given key.

Loading content...

Implementations on Foreign Types

impl StoreObjs for BTreeMap<OsmId, OsmObj>[src]

Loading content...

Implementors

Loading content...