Struct mz_aws_util::s3_uploader::CompletedUpload
source · pub struct CompletedUpload {
pub part_count: u32,
pub total_bytes_uploaded: u64,
pub bucket: String,
pub key: String,
}
Expand description
Information about a completed multi part upload after finish
is called.
Fields§
§part_count: u32
The total number of parts in the multi part upload.
total_bytes_uploaded: u64
The total number of bytes uploaded in the multi part upload.
bucket: String
§key: String
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CompletedUpload
impl RefUnwindSafe for CompletedUpload
impl Send for CompletedUpload
impl Sync for CompletedUpload
impl Unpin for CompletedUpload
impl UnwindSafe for CompletedUpload
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Creates a shared type from an unshared type.