usechrono::{DateTime, Utc};/// A bucket object returned from an S3 list objects request.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]pubstructBucketObject{/// The key of the object.
pubkey: String,
/// The last modified time of the object.
publast_modified:Option<DateTime<Utc>>,
/// The size of the object.
pubsize:u64,
}