Struct rusoto_s3::Part [] [src]

pub struct Part {
    pub e_tag: Option<String>,
    pub last_modified: Option<String>,
    pub part_number: Option<i64>,
    pub size: Option<i64>,
}

Fields

Entity tag returned when the part was uploaded.

Date and time at which the part was uploaded.

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

Size of the uploaded part data.

Trait Implementations

impl Default for Part
[src]

[src]

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

impl Debug for Part
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Part
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Part

impl Sync for Part