nexrad-data 1.0.0-rc.7

Data access for NEXRAD weather radar files and AWS integration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use chrono::{DateTime, Utc};

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