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