-
https://docs.rs/object_store/latest/object_store/index.html#multipart-upload |
Beta Was this translation helpful? Give feedback.
Answered by
tustvold
Nov 23, 2023
Replies: 1 comment
-
You could wrap the AsyncWrite in an impl that keeps track of how many bytes are written. This will be an over-estimate as it will count in-progress uploads but may be good enough. Otherwise you will need to use the lower level MultipartStore API |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Jefffrey
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could wrap the AsyncWrite in an impl that keeps track of how many bytes are written. This will be an over-estimate as it will count in-progress uploads but may be good enough.
Otherwise you will need to use the lower level MultipartStore API