alamb commented on code in PR #8272:
URL: https://github.com/apache/arrow-rs/pull/8272#discussion_r2322967438
##########
parquet/src/file/properties.rs:
##########
@@ -193,6 +193,13 @@ impl WriterProperties {
WriterPropertiesBuilder::default()
}
+ /// Converts this [`WriterProperties`] into a [`WriterPropertiesBuilder`]
+ /// Used for mutating existing property settings
+ pub fn into_builder(self) -> WriterPropertiesBuilder {
+ let builder: WriterPropertiesBuilder = self.into();
+ builder
Review Comment:
I think you could make this more concise like this if you want:
```suggestion
self.into()
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]