usecrate::aws::s3::bucket_object::BucketObject;/// A bucket object returned from an S3 list objects request.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]pubstructDownloadedBucketObject{/// The metadata of the object.
pubmetadata: BucketObject,
/// The object data.
pubdata:Vec<u8>,
}