pub struct ListThingsRequest {
pub attribute_name: Option<String>,
pub attribute_value: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub thing_type_name: Option<String>,
}Expand description
The input for the ListThings operation.
Fields§
§attribute_name: Option<String>The attribute name used to search for things.
attribute_value: Option<String>The attribute value used to search for things.
max_results: Option<i64>The maximum number of results to return in this operation.
next_token: Option<String>The token to retrieve the next set of results.
thing_type_name: Option<String>The name of the thing type used to search for things.
Trait Implementations§
Source§impl Clone for ListThingsRequest
impl Clone for ListThingsRequest
Source§fn clone(&self) -> ListThingsRequest
fn clone(&self) -> ListThingsRequest
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 ListThingsRequest
impl Debug for ListThingsRequest
Source§impl Default for ListThingsRequest
impl Default for ListThingsRequest
Source§fn default() -> ListThingsRequest
fn default() -> ListThingsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListThingsRequest
impl PartialEq for ListThingsRequest
Source§impl Serialize for ListThingsRequest
impl Serialize for ListThingsRequest
impl StructuralPartialEq for ListThingsRequest
Auto Trait Implementations§
impl Freeze for ListThingsRequest
impl RefUnwindSafe for ListThingsRequest
impl Send for ListThingsRequest
impl Sync for ListThingsRequest
impl Unpin for ListThingsRequest
impl UnwindSafe for ListThingsRequest
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