Struct aws_sdk_iot::output::SearchIndexOutput
source · #[non_exhaustive]pub struct SearchIndexOutput { /* private fields */ }
Implementations§
source§impl SearchIndexOutput
impl SearchIndexOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token used to get the next set of results, or null
if there are no additional results.
sourcepub fn things(&self) -> Option<&[ThingDocument]>
pub fn things(&self) -> Option<&[ThingDocument]>
The things that match the search query.
sourcepub fn thing_groups(&self) -> Option<&[ThingGroupDocument]>
pub fn thing_groups(&self) -> Option<&[ThingGroupDocument]>
The thing groups that match the search query.
source§impl SearchIndexOutput
impl SearchIndexOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SearchIndexOutput
.
Trait Implementations§
source§impl Clone for SearchIndexOutput
impl Clone for SearchIndexOutput
source§fn clone(&self) -> SearchIndexOutput
fn clone(&self) -> SearchIndexOutput
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 Debug for SearchIndexOutput
impl Debug for SearchIndexOutput
source§impl PartialEq<SearchIndexOutput> for SearchIndexOutput
impl PartialEq<SearchIndexOutput> for SearchIndexOutput
source§fn eq(&self, other: &SearchIndexOutput) -> bool
fn eq(&self, other: &SearchIndexOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.