pub struct SearchIndexResponse {
pub next_token: Option<String>,
pub thing_groups: Option<Vec<ThingGroupDocument>>,
pub things: Option<Vec<ThingDocument>>,
}Fields§
§next_token: Option<String>The token used to get the next set of results, or null if there are no additional results.
thing_groups: Option<Vec<ThingGroupDocument>>The thing groups that match the search query.
things: Option<Vec<ThingDocument>>The things that match the search query.
Trait Implementations§
Source§impl Clone for SearchIndexResponse
impl Clone for SearchIndexResponse
Source§fn clone(&self) -> SearchIndexResponse
fn clone(&self) -> SearchIndexResponse
Returns a duplicate 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 SearchIndexResponse
impl Debug for SearchIndexResponse
Source§impl Default for SearchIndexResponse
impl Default for SearchIndexResponse
Source§fn default() -> SearchIndexResponse
fn default() -> SearchIndexResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SearchIndexResponse
impl<'de> Deserialize<'de> for SearchIndexResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SearchIndexResponse
impl PartialEq for SearchIndexResponse
impl StructuralPartialEq for SearchIndexResponse
Auto Trait Implementations§
impl Freeze for SearchIndexResponse
impl RefUnwindSafe for SearchIndexResponse
impl Send for SearchIndexResponse
impl Sync for SearchIndexResponse
impl Unpin for SearchIndexResponse
impl UnwindSafe for SearchIndexResponse
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