pub struct CreateThingTypeResponse {
pub thing_type_arn: Option<String>,
pub thing_type_id: Option<String>,
pub thing_type_name: Option<String>,
}Expand description
The output of the CreateThingType operation.
Fields§
§thing_type_arn: Option<String>The Amazon Resource Name (ARN) of the thing type.
thing_type_id: Option<String>The thing type ID.
thing_type_name: Option<String>The name of the thing type.
Trait Implementations§
Source§impl Clone for CreateThingTypeResponse
impl Clone for CreateThingTypeResponse
Source§fn clone(&self) -> CreateThingTypeResponse
fn clone(&self) -> CreateThingTypeResponse
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 CreateThingTypeResponse
impl Debug for CreateThingTypeResponse
Source§impl Default for CreateThingTypeResponse
impl Default for CreateThingTypeResponse
Source§fn default() -> CreateThingTypeResponse
fn default() -> CreateThingTypeResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateThingTypeResponse
impl<'de> Deserialize<'de> for CreateThingTypeResponse
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 CreateThingTypeResponse
impl PartialEq for CreateThingTypeResponse
impl StructuralPartialEq for CreateThingTypeResponse
Auto Trait Implementations§
impl Freeze for CreateThingTypeResponse
impl RefUnwindSafe for CreateThingTypeResponse
impl Send for CreateThingTypeResponse
impl Sync for CreateThingTypeResponse
impl Unpin for CreateThingTypeResponse
impl UnwindSafe for CreateThingTypeResponse
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