[][src]Struct rusoto_s3::ListPartsOutput

pub struct ListPartsOutput {
    pub abort_date: Option<String>,
    pub abort_rule_id: Option<String>,
    pub bucket: Option<String>,
    pub initiator: Option<Initiator>,
    pub is_truncated: Option<bool>,
    pub key: Option<String>,
    pub max_parts: Option<i64>,
    pub next_part_number_marker: Option<i64>,
    pub owner: Option<Owner>,
    pub part_number_marker: Option<i64>,
    pub parts: Option<Vec<Part>>,
    pub request_charged: Option<String>,
    pub storage_class: Option<String>,
    pub upload_id: Option<String>,
}

Fields

Date when multipart upload will become eligible for abort operation by lifecycle.

Id of the lifecycle rule that makes a multipart upload eligible for abort operation.

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

Identifies who initiated the multipart upload.

Indicates whether the returned list of parts is truncated.

Object key for which the multipart upload was initiated.

Maximum number of parts that were allowed in the response.

When a list is truncated, this element specifies the last part in the list, as well as the value to use for the part-number-marker request parameter in a subsequent request.

Part number after which listing begins.

The class of storage used to store the object.

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

Trait Implementations

impl Default for ListPartsOutput
[src]

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

impl PartialEq<ListPartsOutput> for ListPartsOutput
[src]

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

This method tests for !=.

impl Clone for ListPartsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListPartsOutput
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

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

Performs the conversion.

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Same for T

Should always be Self

impl<T> Erased for T