pub struct InvoiceItemTax {
pub sales_tax: SalesTax,
pub amount: Option<Money>,
}Expand description
Tax applied to an invoice line item.
Fields§
§sales_tax: SalesTax§amount: Option<Money>Trait Implementations§
Source§impl Clone for InvoiceItemTax
impl Clone for InvoiceItemTax
Source§fn clone(&self) -> InvoiceItemTax
fn clone(&self) -> InvoiceItemTax
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 InvoiceItemTax
impl Debug for InvoiceItemTax
Source§impl<'de> Deserialize<'de> for InvoiceItemTax
impl<'de> Deserialize<'de> for InvoiceItemTax
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
Auto Trait Implementations§
impl Freeze for InvoiceItemTax
impl RefUnwindSafe for InvoiceItemTax
impl Send for InvoiceItemTax
impl Sync for InvoiceItemTax
impl Unpin for InvoiceItemTax
impl UnsafeUnpin for InvoiceItemTax
impl UnwindSafe for InvoiceItemTax
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