File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " osmpbfreader"
3- version = " 0.19.0 "
3+ version = " 0.19.1 "
44authors = [
" Guillaume Pinot <[email protected] >" ]
55description = " Read OpenStreetMap PBF files in rust."
66documentation = " https://docs.rs/osmpbfreader"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ use pub_iterator_type::pub_iterator_type;
1414
1515pub_iterator_type ! {
1616 #[ doc="Iterator on the `OsmObj` of a `PrimitiveBlock`." ]
17- OsmObjs [ ' a] = Box <dyn Iterator <Item = OsmObj > + ' a>
17+ OsmObjs [ ' a] = Box <dyn Iterator <Item = OsmObj > + ' a + Send >
1818}
1919
2020pub fn iter ( block : & PrimitiveBlock ) -> OsmObjs {
@@ -24,7 +24,7 @@ pub fn iter(block: &PrimitiveBlock) -> OsmObjs {
2424
2525pub_iterator_type ! {
2626 #[ doc="Iterator on the `Node` of a `PrimitiveBlock`." ]
27- Nodes [ ' a] = Box <dyn Iterator <Item = Node > + ' a>
27+ Nodes [ ' a] = Box <dyn Iterator <Item = Node > + ' a + Send >
2828}
2929
3030pub fn nodes ( block : & PrimitiveBlock ) -> Nodes {
@@ -34,7 +34,7 @@ pub fn nodes(block: &PrimitiveBlock) -> Nodes {
3434
3535pub_iterator_type ! {
3636 #[ doc="Iterator on the `Way` of a `PrimitiveBlock`." ]
37- Ways [ ' a] = Box <dyn Iterator <Item = Way > + ' a>
37+ Ways [ ' a] = Box <dyn Iterator <Item = Way > + ' a + Send >
3838}
3939
4040pub fn ways ( block : & PrimitiveBlock ) -> Ways {
@@ -44,7 +44,7 @@ pub fn ways(block: &PrimitiveBlock) -> Ways {
4444
4545pub_iterator_type ! {
4646 #[ doc="Iterator on the `Relation` of a `PrimitiveBlock`." ]
47- Relations [ ' a] = Box <dyn Iterator <Item = Relation > + ' a>
47+ Relations [ ' a] = Box <dyn Iterator <Item = Relation > + ' a + Send >
4848}
4949
5050pub fn relations ( block : & PrimitiveBlock ) -> Relations {
You can’t perform that action at this time.
0 commit comments