Struct rusoto_s3::ListPartsRequest[][src]

pub struct ListPartsRequest {
    pub bucket: String,
    pub key: String,
    pub max_parts: Option<i64>,
    pub part_number_marker: Option<i64>,
    pub request_payer: Option<String>,
    pub upload_id: String,
}

Fields

Sets the maximum number of parts to return.

Specifies the part after which listing should begin. Only parts with higher part numbers will be listed.

Upload ID identifying the multipart upload whose parts are being listed.

Trait Implementations

impl Default for ListPartsRequest
[src]

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

impl Debug for ListPartsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListPartsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListPartsRequest
[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