nexrad-data 1.0.0-rc.6

Data access for NEXRAD weather radar files and AWS integration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// A field in the S3 list objects response. These are not necessarily part of the same object.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum BucketObjectField {
    /// Whether the list of objects is truncated. Child of `ListBucketResult`.
    IsTruncated,
    /// The key of a bucket object. Child of `Contents`.
    Key,
    /// The last modified time of a bucket object. Child of `Contents`.
    LastModified,
    /// The size of a bucket object. Child of `Contents`.
    Size,
}