pub struct ListThingsInBillingGroupResponse {
pub next_token: Option<String>,
pub things: Option<Vec<String>>,
}Fields§
§next_token: Option<String>The token used to get the next set of results, or null if there are no additional results.
things: Option<Vec<String>>A list of things in the billing group.
Trait Implementations§
Source§impl Clone for ListThingsInBillingGroupResponse
impl Clone for ListThingsInBillingGroupResponse
Source§fn clone(&self) -> ListThingsInBillingGroupResponse
fn clone(&self) -> ListThingsInBillingGroupResponse
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 ListThingsInBillingGroupResponse
impl Default for ListThingsInBillingGroupResponse
Source§fn default() -> ListThingsInBillingGroupResponse
fn default() -> ListThingsInBillingGroupResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListThingsInBillingGroupResponse
impl<'de> Deserialize<'de> for ListThingsInBillingGroupResponse
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 ListThingsInBillingGroupResponse
impl PartialEq for ListThingsInBillingGroupResponse
Source§fn eq(&self, other: &ListThingsInBillingGroupResponse) -> bool
fn eq(&self, other: &ListThingsInBillingGroupResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListThingsInBillingGroupResponse
Auto Trait Implementations§
impl Freeze for ListThingsInBillingGroupResponse
impl RefUnwindSafe for ListThingsInBillingGroupResponse
impl Send for ListThingsInBillingGroupResponse
impl Sync for ListThingsInBillingGroupResponse
impl Unpin for ListThingsInBillingGroupResponse
impl UnwindSafe for ListThingsInBillingGroupResponse
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