pub struct TaxLineDetail {
pub tax_rate_ref: Option<NtRef>,
pub net_amount_taxable: Option<f64>,
pub percent_based: Option<bool>,
pub tax_inclusive_amount: Option<f64>,
pub override_delta_amount: Option<f64>,
pub tax_percent: Option<f64>,
}Expand description
TaxLineDetail
Description of the tax line detail
Fields§
§tax_rate_ref: Option<NtRef>§net_amount_taxable: Option<f64>§percent_based: Option<bool>§tax_inclusive_amount: Option<f64>§override_delta_amount: Option<f64>§tax_percent: Option<f64>Trait Implementations§
Source§impl Clone for TaxLineDetail
impl Clone for TaxLineDetail
Source§fn clone(&self) -> TaxLineDetail
fn clone(&self) -> TaxLineDetail
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 TaxLineDetail
impl Debug for TaxLineDetail
Source§impl Default for TaxLineDetail
impl Default for TaxLineDetail
Source§fn default() -> TaxLineDetail
fn default() -> TaxLineDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaxLineDetailwhere
TaxLineDetail: Default,
impl<'de> Deserialize<'de> for TaxLineDetailwhere
TaxLineDetail: Default,
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 TaxLineDetail
impl PartialEq for TaxLineDetail
Source§impl Serialize for TaxLineDetail
impl Serialize for TaxLineDetail
impl StructuralPartialEq for TaxLineDetail
Auto Trait Implementations§
impl Freeze for TaxLineDetail
impl RefUnwindSafe for TaxLineDetail
impl Send for TaxLineDetail
impl Sync for TaxLineDetail
impl Unpin for TaxLineDetail
impl UnwindSafe for TaxLineDetail
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