Closed threecgreen closed 1 year ago
get_ref
seems okay, but I'm less sure about get_mut
. It looks like a footgun to me, although a Reader
does have it.
Does get_ref
unblock your specific use case? If so, let's just go with that for now.
Thanks for the quick response!
Yes, get_ref
unblocks my specific use case.
This PR is on crates.io in csv 1.2.2
.
Thank you!
It's useful to be able to access the underlying writer without dropping
Writer
, for example, checking the position of anstd::io::Cursor
.