#[non_exhaustive]pub struct RasterDataCollectionQueryOutput { /* private fields */ }
Expand description
The output structure contains the Raster Data Collection Query input along with some additional metadata.
Implementations§
source§impl RasterDataCollectionQueryOutput
impl RasterDataCollectionQueryOutput
sourcepub fn raster_data_collection_arn(&self) -> Option<&str>
pub fn raster_data_collection_arn(&self) -> Option<&str>
The ARN of the Raster Data Collection against which the search is done.
sourcepub fn raster_data_collection_name(&self) -> Option<&str>
pub fn raster_data_collection_name(&self) -> Option<&str>
The name of the raster data collection.
sourcepub fn time_range_filter(&self) -> Option<&TimeRangeFilterOutput>
pub fn time_range_filter(&self) -> Option<&TimeRangeFilterOutput>
The TimeRange filter used in the search.
sourcepub fn area_of_interest(&self) -> Option<&AreaOfInterest>
pub fn area_of_interest(&self) -> Option<&AreaOfInterest>
The Area of Interest used in the search.
sourcepub fn property_filters(&self) -> Option<&PropertyFilters>
pub fn property_filters(&self) -> Option<&PropertyFilters>
Property filters used in the search.
source§impl RasterDataCollectionQueryOutput
impl RasterDataCollectionQueryOutput
sourcepub fn builder() -> RasterDataCollectionQueryOutputBuilder
pub fn builder() -> RasterDataCollectionQueryOutputBuilder
Creates a new builder-style object to manufacture RasterDataCollectionQueryOutput
.
Trait Implementations§
source§impl Clone for RasterDataCollectionQueryOutput
impl Clone for RasterDataCollectionQueryOutput
source§fn clone(&self) -> RasterDataCollectionQueryOutput
fn clone(&self) -> RasterDataCollectionQueryOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<RasterDataCollectionQueryOutput> for RasterDataCollectionQueryOutput
impl PartialEq<RasterDataCollectionQueryOutput> for RasterDataCollectionQueryOutput
source§fn eq(&self, other: &RasterDataCollectionQueryOutput) -> bool
fn eq(&self, other: &RasterDataCollectionQueryOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RasterDataCollectionQueryOutput
Auto Trait Implementations§
impl RefUnwindSafe for RasterDataCollectionQueryOutput
impl Send for RasterDataCollectionQueryOutput
impl Sync for RasterDataCollectionQueryOutput
impl Unpin for RasterDataCollectionQueryOutput
impl UnwindSafe for RasterDataCollectionQueryOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more