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