Struct rusoto_iot::ThingDocument[][src]

pub struct ThingDocument {
    pub attributes: Option<HashMap<String, String>>,
    pub shadow: Option<String>,
    pub thing_group_names: Option<Vec<String>>,
    pub thing_id: Option<String>,
    pub thing_name: Option<String>,
    pub thing_type_name: Option<String>,
}

The thing search index document.

Fields

The attributes.

The thing shadow.

Thing group names.

The thing ID.

The thing name.

The thing type name.

Trait Implementations

impl Default for ThingDocument
[src]

Returns the "default value" for a type. Read more

impl Debug for ThingDocument
[src]

Formats the value using the given formatter. Read more

impl Clone for ThingDocument
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ThingDocument
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations