Struct rusoto_s3::CompletedPart[][src]

pub struct CompletedPart {
    pub e_tag: Option<String>,
    pub part_number: Option<i64>,
}

Fields

Entity tag returned when the part was uploaded.

Part number that identifies the part. This is a positive integer between 1 and 10,000.

Trait Implementations

impl Default for CompletedPart
[src]

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

impl Debug for CompletedPart
[src]

Formats the value using the given formatter. Read more

impl Clone for CompletedPart
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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