[][src]Struct rusoto_s3::ListMultipartUploadsOutput

pub struct ListMultipartUploadsOutput {
    pub bucket: Option<String>,
    pub common_prefixes: Option<Vec<CommonPrefix>>,
    pub delimiter: Option<String>,
    pub encoding_type: Option<String>,
    pub is_truncated: Option<bool>,
    pub key_marker: Option<String>,
    pub max_uploads: Option<i64>,
    pub next_key_marker: Option<String>,
    pub next_upload_id_marker: Option<String>,
    pub prefix: Option<String>,
    pub upload_id_marker: Option<String>,
    pub uploads: Option<Vec<MultipartUpload>>,
}

Fields

bucket: Option<String>

Name of the bucket to which the multipart upload was initiated.

common_prefixes: Option<Vec<CommonPrefix>>delimiter: Option<String>encoding_type: Option<String>

Encoding type used by Amazon S3 to encode object keys in the response.

is_truncated: Option<bool>

Indicates whether the returned list of multipart uploads is truncated. A value of true indicates that the list was truncated. The list can be truncated if the number of multipart uploads exceeds the limit allowed or specified by max uploads.

key_marker: Option<String>

The key at or after which the listing began.

max_uploads: Option<i64>

Maximum number of multipart uploads that could have been included in the response.

next_key_marker: Option<String>

When a list is truncated, this element specifies the value that should be used for the key-marker request parameter in a subsequent request.

next_upload_id_marker: Option<String>

When a list is truncated, this element specifies the value that should be used for the upload-id-marker request parameter in a subsequent request.

prefix: Option<String>

When a prefix is provided in the request, this field contains the specified prefix. The result contains only keys starting with the specified prefix.

upload_id_marker: Option<String>

Upload ID after which listing began.

uploads: Option<Vec<MultipartUpload>>

Trait Implementations

impl PartialEq<ListMultipartUploadsOutput> for ListMultipartUploadsOutput[src]

impl Default for ListMultipartUploadsOutput[src]

impl Clone for ListMultipartUploadsOutput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ListMultipartUploadsOutput[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self