Struct aws_sdk_rust::aws::s3::object::Part [] [src]

pub struct Part {
    pub last_modified: LastModified,
    pub part_number: PartNumber,
    pub e_tag: ETag,
    pub size: Size,
}

Fields

Date and time at which the part was uploaded.

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

Entity tag returned when the part was uploaded.

Size of the uploaded part data.

Trait Implementations

impl Debug for Part
[src]

Formats the value using the given formatter.

impl Default for Part
[src]

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

impl Decodable for Part
[src]

Deserialize a value using a Decoder.

impl Encodable for Part
[src]

Serialize a value using an Encoder.