nexrad-data 0.2.0

Models and functions for accessing NEXRAD data from public sources.
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,
}