#[non_exhaustive]pub struct CreateThingGroupOutput {
    pub thing_group_name: Option<String>,
    pub thing_group_arn: Option<String>,
    pub thing_group_id: Option<String>,
    /* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.thing_group_name: Option<String>The thing group name.
thing_group_arn: Option<String>The thing group ARN.
thing_group_id: Option<String>The thing group ID.
Implementations§
source§impl CreateThingGroupOutput
 
impl CreateThingGroupOutput
sourcepub fn thing_group_name(&self) -> Option<&str>
 
pub fn thing_group_name(&self) -> Option<&str>
The thing group name.
sourcepub fn thing_group_arn(&self) -> Option<&str>
 
pub fn thing_group_arn(&self) -> Option<&str>
The thing group ARN.
sourcepub fn thing_group_id(&self) -> Option<&str>
 
pub fn thing_group_id(&self) -> Option<&str>
The thing group ID.
source§impl CreateThingGroupOutput
 
impl CreateThingGroupOutput
sourcepub fn builder() -> CreateThingGroupOutputBuilder
 
pub fn builder() -> CreateThingGroupOutputBuilder
Creates a new builder-style object to manufacture CreateThingGroupOutput.
Trait Implementations§
source§impl Clone for CreateThingGroupOutput
 
impl Clone for CreateThingGroupOutput
source§fn clone(&self) -> CreateThingGroupOutput
 
fn clone(&self) -> CreateThingGroupOutput
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 CreateThingGroupOutput
 
impl Debug for CreateThingGroupOutput
source§impl PartialEq<CreateThingGroupOutput> for CreateThingGroupOutput
 
impl PartialEq<CreateThingGroupOutput> for CreateThingGroupOutput
source§fn eq(&self, other: &CreateThingGroupOutput) -> bool
 
fn eq(&self, other: &CreateThingGroupOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateThingGroupOutput
 
impl RequestId for CreateThingGroupOutput
source§fn request_id(&self) -> Option<&str>
 
fn request_id(&self) -> Option<&str>
Returns the request ID, or 
None if the service could not be reached.impl StructuralPartialEq for CreateThingGroupOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateThingGroupOutput
impl Send for CreateThingGroupOutput
impl Sync for CreateThingGroupOutput
impl Unpin for CreateThingGroupOutput
impl UnwindSafe for CreateThingGroupOutput
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