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
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>,
}