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

/// The result of a list objects request.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct BucketListResult {
    /// Whether the list of objects is truncated.
    pub truncated: bool,
    /// The objects returned by the request.
    pub objects: Vec<BucketObject>,
}