crepererum commented on code in PR #691:
URL: 
https://github.com/apache/arrow-rs-object-store/pull/691#discussion_r3087767138


##########
src/prefix.rs:
##########


Review Comment:
   It would probably help if we destruct `meta` so we don't forget about 
variables in the future, i.e.:
   
   ```rust
   let ObjectMeta {
     last_modified,
     size,
     location,
     e_tag,
     version,
   } = meta;
   
   ObjectMeta {
     last_modified,
     size,
     location: strip_prefix(...)
     e_tag,
     version,
   }
   ```



-- 
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]

Reply via email to