Struct aws_sdk_iot::types::ThingAttribute
source · #[non_exhaustive]pub struct ThingAttribute { /* private fields */ }
Expand description
The properties of the thing, including thing name, thing type name, and a list of thing attributes.
Implementations§
source§impl ThingAttribute
impl ThingAttribute
sourcepub fn thing_name(&self) -> Option<&str>
pub fn thing_name(&self) -> Option<&str>
The name of the thing.
sourcepub fn thing_type_name(&self) -> Option<&str>
pub fn thing_type_name(&self) -> Option<&str>
The name of the thing type, if the thing has been associated with a type.
source§impl ThingAttribute
impl ThingAttribute
sourcepub fn builder() -> ThingAttributeBuilder
pub fn builder() -> ThingAttributeBuilder
Creates a new builder-style object to manufacture ThingAttribute
.
Trait Implementations§
source§impl Clone for ThingAttribute
impl Clone for ThingAttribute
source§fn clone(&self) -> ThingAttribute
fn clone(&self) -> ThingAttribute
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 ThingAttribute
impl Debug for ThingAttribute
source§impl PartialEq<ThingAttribute> for ThingAttribute
impl PartialEq<ThingAttribute> for ThingAttribute
source§fn eq(&self, other: &ThingAttribute) -> bool
fn eq(&self, other: &ThingAttribute) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ThingAttribute
Auto Trait Implementations§
impl RefUnwindSafe for ThingAttribute
impl Send for ThingAttribute
impl Sync for ThingAttribute
impl Unpin for ThingAttribute
impl UnwindSafe for ThingAttribute
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