pub struct BillingCustomer {
pub email: String,
pub id: String,
}Expand description
BillingCustomer : A representation of a QCS’s account billing customer. Note, balance does not account for the upcoming invoice.
Fields§
§email: String§id: StringImplementations§
Source§impl BillingCustomer
impl BillingCustomer
Sourcepub fn new(email: String, id: String) -> BillingCustomer
pub fn new(email: String, id: String) -> BillingCustomer
A representation of a QCS’s account billing customer. Note, balance does not account for the upcoming invoice.
Trait Implementations§
Source§impl Clone for BillingCustomer
impl Clone for BillingCustomer
Source§fn clone(&self) -> BillingCustomer
fn clone(&self) -> BillingCustomer
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 BillingCustomer
impl Debug for BillingCustomer
Source§impl Default for BillingCustomer
impl Default for BillingCustomer
Source§fn default() -> BillingCustomer
fn default() -> BillingCustomer
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BillingCustomer
impl<'de> Deserialize<'de> for BillingCustomer
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 BillingCustomer
impl PartialEq for BillingCustomer
Source§impl Serialize for BillingCustomer
impl Serialize for BillingCustomer
impl StructuralPartialEq for BillingCustomer
Auto Trait Implementations§
impl Freeze for BillingCustomer
impl RefUnwindSafe for BillingCustomer
impl Send for BillingCustomer
impl Sync for BillingCustomer
impl Unpin for BillingCustomer
impl UnwindSafe for BillingCustomer
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