pub struct ListThingsInBillingGroupRequest {
pub billing_group_name: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§billing_group_name: StringThe name of the billing group.
max_results: Option<i64>The maximum number of results to return per request.
next_token: Option<String>The token to retrieve the next set of results.
Trait Implementations§
Source§impl Clone for ListThingsInBillingGroupRequest
impl Clone for ListThingsInBillingGroupRequest
Source§fn clone(&self) -> ListThingsInBillingGroupRequest
fn clone(&self) -> ListThingsInBillingGroupRequest
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 ListThingsInBillingGroupRequest
impl Default for ListThingsInBillingGroupRequest
Source§fn default() -> ListThingsInBillingGroupRequest
fn default() -> ListThingsInBillingGroupRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListThingsInBillingGroupRequest
impl PartialEq for ListThingsInBillingGroupRequest
Source§fn eq(&self, other: &ListThingsInBillingGroupRequest) -> bool
fn eq(&self, other: &ListThingsInBillingGroupRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListThingsInBillingGroupRequest
Auto Trait Implementations§
impl Freeze for ListThingsInBillingGroupRequest
impl RefUnwindSafe for ListThingsInBillingGroupRequest
impl Send for ListThingsInBillingGroupRequest
impl Sync for ListThingsInBillingGroupRequest
impl Unpin for ListThingsInBillingGroupRequest
impl UnwindSafe for ListThingsInBillingGroupRequest
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