pub struct DescribeBillingGroupResponse {
pub billing_group_arn: Option<String>,
pub billing_group_id: Option<String>,
pub billing_group_metadata: Option<BillingGroupMetadata>,
pub billing_group_name: Option<String>,
pub billing_group_properties: Option<BillingGroupProperties>,
pub version: Option<i64>,
}Fields§
§billing_group_arn: Option<String>The ARN of the billing group.
billing_group_id: Option<String>The ID of the billing group.
billing_group_metadata: Option<BillingGroupMetadata>Additional information about the billing group.
billing_group_name: Option<String>The name of the billing group.
billing_group_properties: Option<BillingGroupProperties>The properties of the billing group.
version: Option<i64>The version of the billing group.
Trait Implementations§
Source§impl Clone for DescribeBillingGroupResponse
impl Clone for DescribeBillingGroupResponse
Source§fn clone(&self) -> DescribeBillingGroupResponse
fn clone(&self) -> DescribeBillingGroupResponse
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 DescribeBillingGroupResponse
impl Debug for DescribeBillingGroupResponse
Source§impl Default for DescribeBillingGroupResponse
impl Default for DescribeBillingGroupResponse
Source§fn default() -> DescribeBillingGroupResponse
fn default() -> DescribeBillingGroupResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeBillingGroupResponse
impl<'de> Deserialize<'de> for DescribeBillingGroupResponse
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 DescribeBillingGroupResponse
impl PartialEq for DescribeBillingGroupResponse
Source§fn eq(&self, other: &DescribeBillingGroupResponse) -> bool
fn eq(&self, other: &DescribeBillingGroupResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeBillingGroupResponse
Auto Trait Implementations§
impl Freeze for DescribeBillingGroupResponse
impl RefUnwindSafe for DescribeBillingGroupResponse
impl Send for DescribeBillingGroupResponse
impl Sync for DescribeBillingGroupResponse
impl Unpin for DescribeBillingGroupResponse
impl UnwindSafe for DescribeBillingGroupResponse
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