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
use crate::aws::s3::bucket_object::BucketObject;

/// A bucket object returned from an S3 list objects request.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct DownloadedBucketObject {
    /// The metadata of the object.
    pub metadata: BucketObject,
    /// The object data.
    pub data: Vec<u8>,
}