This PR adds an into_inner method to the LASWriter type. This allows users to retrieve the Write type that they passed to the LASWriter when creating it using from_writer_and_header, similar to what Cursor<T> does for example. To enable this, the LASWriter type now has to carry type information of the underlying Write type, which sadly is a breaking API change.
This PR adds an
into_inner
method to theLASWriter
type. This allows users to retrieve theWrite
type that they passed to theLASWriter
when creating it usingfrom_writer_and_header
, similar to whatCursor<T>
does for example. To enable this, theLASWriter
type now has to carry type information of the underlyingWrite
type, which sadly is a breaking API change.