pub struct ListBillingGroupsResponse {
pub billing_groups: Option<Vec<GroupNameAndArn>>,
pub next_token: Option<String>,
}Fields§
§billing_groups: Option<Vec<GroupNameAndArn>>The list of billing groups.
next_token: Option<String>The token used to get the next set of results, or null if there are no additional results.
Trait Implementations§
Source§impl Clone for ListBillingGroupsResponse
impl Clone for ListBillingGroupsResponse
Source§fn clone(&self) -> ListBillingGroupsResponse
fn clone(&self) -> ListBillingGroupsResponse
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 ListBillingGroupsResponse
impl Debug for ListBillingGroupsResponse
Source§impl Default for ListBillingGroupsResponse
impl Default for ListBillingGroupsResponse
Source§fn default() -> ListBillingGroupsResponse
fn default() -> ListBillingGroupsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListBillingGroupsResponse
impl<'de> Deserialize<'de> for ListBillingGroupsResponse
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
impl StructuralPartialEq for ListBillingGroupsResponse
Auto Trait Implementations§
impl Freeze for ListBillingGroupsResponse
impl RefUnwindSafe for ListBillingGroupsResponse
impl Send for ListBillingGroupsResponse
impl Sync for ListBillingGroupsResponse
impl Unpin for ListBillingGroupsResponse
impl UnwindSafe for ListBillingGroupsResponse
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