pub struct ThingTypeProperties {
pub searchable_attributes: Option<Vec<String>>,
pub thing_type_description: Option<String>,
}Expand description
The ThingTypeProperties contains information about the thing type including: a thing type description, and a list of searchable thing attribute names.
Fields§
§searchable_attributes: Option<Vec<String>>A list of searchable thing attribute names.
thing_type_description: Option<String>The description of the thing type.
Trait Implementations§
Source§impl Clone for ThingTypeProperties
impl Clone for ThingTypeProperties
Source§fn clone(&self) -> ThingTypeProperties
fn clone(&self) -> ThingTypeProperties
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 ThingTypeProperties
impl Debug for ThingTypeProperties
Source§impl Default for ThingTypeProperties
impl Default for ThingTypeProperties
Source§fn default() -> ThingTypeProperties
fn default() -> ThingTypeProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ThingTypeProperties
impl<'de> Deserialize<'de> for ThingTypeProperties
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 ThingTypeProperties
impl PartialEq for ThingTypeProperties
Source§impl Serialize for ThingTypeProperties
impl Serialize for ThingTypeProperties
impl StructuralPartialEq for ThingTypeProperties
Auto Trait Implementations§
impl Freeze for ThingTypeProperties
impl RefUnwindSafe for ThingTypeProperties
impl Send for ThingTypeProperties
impl Sync for ThingTypeProperties
impl Unpin for ThingTypeProperties
impl UnwindSafe for ThingTypeProperties
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