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