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
last_modified: LastModified
Date and time at which the part was uploaded.
part_number: PartNumber
Part number identifying the part. This is a positive integer between 1 and 10,000.
e_tag: ETag
Entity tag returned when the part was uploaded.
size: Size
Size of the uploaded part data.
Trait Implementations
impl Debug for Part
[src]
impl Default for Part
[src]
impl Decodable for Part
[src]
fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<Part, __D::Error>
Deserialize a value using a Decoder
.