usecrate::aws::s3::bucket_object::BucketObject;/// The result of a list objects request.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]pubstructBucketListResult{/// Whether the list of objects is truncated.
pubtruncated:bool,
/// The objects returned by the request.
pubobjects:Vec<BucketObject>,
}