pub struct RemoveThingFromThingGroupRequest {
pub thing_arn: Option<String>,
pub thing_group_arn: Option<String>,
pub thing_group_name: Option<String>,
pub thing_name: Option<String>,
}Fields§
§thing_arn: Option<String>The ARN of the thing to remove from the group.
thing_group_arn: Option<String>The group ARN.
thing_group_name: Option<String>The group name.
thing_name: Option<String>The name of the thing to remove from the group.
Trait Implementations§
Source§impl Clone for RemoveThingFromThingGroupRequest
impl Clone for RemoveThingFromThingGroupRequest
Source§fn clone(&self) -> RemoveThingFromThingGroupRequest
fn clone(&self) -> RemoveThingFromThingGroupRequest
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 Default for RemoveThingFromThingGroupRequest
impl Default for RemoveThingFromThingGroupRequest
Source§fn default() -> RemoveThingFromThingGroupRequest
fn default() -> RemoveThingFromThingGroupRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for RemoveThingFromThingGroupRequest
impl PartialEq for RemoveThingFromThingGroupRequest
Source§fn eq(&self, other: &RemoveThingFromThingGroupRequest) -> bool
fn eq(&self, other: &RemoveThingFromThingGroupRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RemoveThingFromThingGroupRequest
Auto Trait Implementations§
impl Freeze for RemoveThingFromThingGroupRequest
impl RefUnwindSafe for RemoveThingFromThingGroupRequest
impl Send for RemoveThingFromThingGroupRequest
impl Sync for RemoveThingFromThingGroupRequest
impl Unpin for RemoveThingFromThingGroupRequest
impl UnwindSafe for RemoveThingFromThingGroupRequest
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