pub struct SearchThingsRequest {
pub entity_id: String,
pub max_results: Option<i64>,
pub namespace_version: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§entity_id: String
The ID of the entity to which the things are associated.
The IDs should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME
max_results: Option<i64>
The maximum number of results to return in the response.
namespace_version: Option<i64>
The version of the user's namespace. Defaults to the latest version of the user's namespace.
next_token: Option<String>
The string that specifies the next page of results. Use this when you're paginating results.
Trait Implementations§
Source§impl Clone for SearchThingsRequest
impl Clone for SearchThingsRequest
Source§fn clone(&self) -> SearchThingsRequest
fn clone(&self) -> SearchThingsRequest
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 SearchThingsRequest
impl Debug for SearchThingsRequest
Source§impl Default for SearchThingsRequest
impl Default for SearchThingsRequest
Source§fn default() -> SearchThingsRequest
fn default() -> SearchThingsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for SearchThingsRequest
impl PartialEq for SearchThingsRequest
Source§impl Serialize for SearchThingsRequest
impl Serialize for SearchThingsRequest
impl StructuralPartialEq for SearchThingsRequest
Auto Trait Implementations§
impl Freeze for SearchThingsRequest
impl RefUnwindSafe for SearchThingsRequest
impl Send for SearchThingsRequest
impl Sync for SearchThingsRequest
impl Unpin for SearchThingsRequest
impl UnwindSafe for SearchThingsRequest
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