Struct aws_sdk_sagemakergeospatial::operation::search_raster_data_collection::SearchRasterDataCollectionOutput
source · #[non_exhaustive]pub struct SearchRasterDataCollectionOutput {
pub approximate_result_count: i32,
pub next_token: Option<String>,
pub items: Option<Vec<ItemSource>>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.approximate_result_count: i32
Approximate number of results in the response.
next_token: Option<String>
If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.
items: Option<Vec<ItemSource>>
List of items matching the Raster DataCollectionQuery.
Implementations§
source§impl SearchRasterDataCollectionOutput
impl SearchRasterDataCollectionOutput
sourcepub fn approximate_result_count(&self) -> i32
pub fn approximate_result_count(&self) -> i32
Approximate number of results in the response.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.
sourcepub fn items(&self) -> &[ItemSource]
pub fn items(&self) -> &[ItemSource]
List of items matching the Raster DataCollectionQuery.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .items.is_none()
.
source§impl SearchRasterDataCollectionOutput
impl SearchRasterDataCollectionOutput
sourcepub fn builder() -> SearchRasterDataCollectionOutputBuilder
pub fn builder() -> SearchRasterDataCollectionOutputBuilder
Creates a new builder-style object to manufacture SearchRasterDataCollectionOutput
.
Trait Implementations§
source§impl Clone for SearchRasterDataCollectionOutput
impl Clone for SearchRasterDataCollectionOutput
source§fn clone(&self) -> SearchRasterDataCollectionOutput
fn clone(&self) -> SearchRasterDataCollectionOutput
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 for SearchRasterDataCollectionOutput
impl PartialEq for SearchRasterDataCollectionOutput
source§fn eq(&self, other: &SearchRasterDataCollectionOutput) -> bool
fn eq(&self, other: &SearchRasterDataCollectionOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for SearchRasterDataCollectionOutput
impl RequestId for SearchRasterDataCollectionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for SearchRasterDataCollectionOutput
Auto Trait Implementations§
impl RefUnwindSafe for SearchRasterDataCollectionOutput
impl Send for SearchRasterDataCollectionOutput
impl Sync for SearchRasterDataCollectionOutput
impl Unpin for SearchRasterDataCollectionOutput
impl UnwindSafe for SearchRasterDataCollectionOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.