Struct rusoto_glacier::ListMultipartUploadsOutput[][src]

pub struct ListMultipartUploadsOutput {
    pub marker: Option<String>,
    pub uploads_list: Option<Vec<UploadListElement>>,
}

Contains the Amazon Glacier response to your request.

Fields

An opaque string that represents where to continue pagination of the results. You use the marker in a new List Multipart Uploads request to obtain more uploads in the list. If there are no more uploads, this value is null.

A list of in-progress multipart uploads.

Trait Implementations

impl Default for ListMultipartUploadsOutput
[src]

Returns the "default value" for a type. Read more

impl Debug for ListMultipartUploadsOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListMultipartUploadsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListMultipartUploadsOutput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations