pub struct BillingInvoice {
pub period_end: String,
pub period_start: String,
pub starting_balance: i64,
pub status: BillingInvoiceStatus,
pub subtotal: i64,
pub tax: i64,
pub total: i64,
pub id: String,
}Fields§
§period_end: String§period_start: String§starting_balance: i64§status: BillingInvoiceStatus§subtotal: i64§tax: i64§total: i64§id: StringImplementations§
Trait Implementations§
source§impl Clone for BillingInvoice
impl Clone for BillingInvoice
source§fn clone(&self) -> BillingInvoice
fn clone(&self) -> BillingInvoice
Returns a copy 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 BillingInvoice
impl Debug for BillingInvoice
source§impl Default for BillingInvoice
impl Default for BillingInvoice
source§fn default() -> BillingInvoice
fn default() -> BillingInvoice
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for BillingInvoice
impl<'de> Deserialize<'de> for BillingInvoice
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<BillingInvoice> for BillingInvoice
impl PartialEq<BillingInvoice> for BillingInvoice
source§fn eq(&self, other: &BillingInvoice) -> bool
fn eq(&self, other: &BillingInvoice) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for BillingInvoice
impl Serialize for BillingInvoice
impl StructuralPartialEq for BillingInvoice
Auto Trait Implementations§
impl RefUnwindSafe for BillingInvoice
impl Send for BillingInvoice
impl Sync for BillingInvoice
impl Unpin for BillingInvoice
impl UnwindSafe for BillingInvoice
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