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;

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