tustvold commented on code in PR #4677:
URL: https://github.com/apache/arrow-rs/pull/4677#discussion_r1290150658
##########
object_store/src/lib.rs:
##########
@@ -729,54 +719,64 @@ impl GetOptions {
}
/// Result for a get request
+#[derive(Debug)]
+pub struct GetResult {
+ /// The [`GetResultPayload`]
+ pub payload: GetResultPayload,
+ /// The [`ObjectMeta`] for this object
+ pub meta: ObjectMeta,
+ /// The range of bytes returned by this request
+ pub range: Range<usize>,
Review Comment:
I opted to make this required, as it allows for accurate buffer sizing among
other things
--
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]