Struct aws_sdk_s3::model::MultipartUpload
source · [−]#[non_exhaustive]pub struct MultipartUpload {
pub upload_id: Option<String>,
pub key: Option<String>,
pub initiated: Option<DateTime>,
pub storage_class: Option<StorageClass>,
pub owner: Option<Owner>,
pub initiator: Option<Initiator>,
}
Expand description
Container for the MultipartUpload
for the Amazon S3 object.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.upload_id: Option<String>
Upload ID that identifies the multipart upload.
key: Option<String>
Key of the object for which the multipart upload was initiated.
initiated: Option<DateTime>
Date and time at which the multipart upload was initiated.
storage_class: Option<StorageClass>
The class of storage used to store the object.
owner: Option<Owner>
Specifies the owner of the object that is part of the multipart upload.
initiator: Option<Initiator>
Identifies who initiated the multipart upload.
Implementations
sourceimpl MultipartUpload
impl MultipartUpload
sourcepub fn key(&self) -> Option<&str>
pub fn key(&self) -> Option<&str>
Key of the object for which the multipart upload was initiated.
sourcepub fn initiated(&self) -> Option<&DateTime>
pub fn initiated(&self) -> Option<&DateTime>
Date and time at which the multipart upload was initiated.
sourcepub fn storage_class(&self) -> Option<&StorageClass>
pub fn storage_class(&self) -> Option<&StorageClass>
The class of storage used to store the object.
sourceimpl MultipartUpload
impl MultipartUpload
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture MultipartUpload
Trait Implementations
sourceimpl Clone for MultipartUpload
impl Clone for MultipartUpload
sourcefn clone(&self) -> MultipartUpload
fn clone(&self) -> MultipartUpload
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MultipartUpload
impl Debug for MultipartUpload
sourceimpl PartialEq<MultipartUpload> for MultipartUpload
impl PartialEq<MultipartUpload> for MultipartUpload
sourcefn eq(&self, other: &MultipartUpload) -> bool
fn eq(&self, other: &MultipartUpload) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &MultipartUpload) -> bool
fn ne(&self, other: &MultipartUpload) -> bool
This method tests for !=
.
impl StructuralPartialEq for MultipartUpload
Auto Trait Implementations
impl RefUnwindSafe for MultipartUpload
impl Send for MultipartUpload
impl Sync for MultipartUpload
impl Unpin for MultipartUpload
impl UnwindSafe for MultipartUpload
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more