georust / geozero

Zero-Copy reading and writing of geospatial data.
Apache License 2.0
352 stars 37 forks source link

RFC: Drop lifetime parameter of GeoJsonReader #147

Closed adamreichold closed 1 year ago

adamreichold commented 1 year ago

&'a mut R implements Read if R does so this should not reduce the set of supported types but it avoids forcing the user to provide a borrowed reference and allow taking ownership as well.

pka commented 1 year ago

&'a mut R implements Read if R does

Good point, danke!