pub struct BuyerTaxInfo {
pub company_legal_name: Option<String>,
pub taxing_region: Option<String>,
pub tax_classifications: Option<Vec<TaxClassification>>,
}Expand description
BuyerTaxInfo : Tax information about the buyer.
Fields
company_legal_name: Option<String>The legal name of the company.
taxing_region: Option<String>The country or region imposing the tax.
tax_classifications: Option<Vec<TaxClassification>>The list of tax classifications.
Implementations
sourceimpl BuyerTaxInfo
impl BuyerTaxInfo
sourcepub fn new() -> BuyerTaxInfo
pub fn new() -> BuyerTaxInfo
Tax information about the buyer.
Trait Implementations
sourceimpl Clone for BuyerTaxInfo
impl Clone for BuyerTaxInfo
sourcefn clone(&self) -> BuyerTaxInfo
fn clone(&self) -> BuyerTaxInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for BuyerTaxInfo
impl Debug for BuyerTaxInfo
sourceimpl Default for BuyerTaxInfo
impl Default for BuyerTaxInfo
sourcefn default() -> BuyerTaxInfo
fn default() -> BuyerTaxInfo
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for BuyerTaxInfo
impl<'de> Deserialize<'de> for BuyerTaxInfo
sourcefn 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
sourceimpl PartialEq<BuyerTaxInfo> for BuyerTaxInfo
impl PartialEq<BuyerTaxInfo> for BuyerTaxInfo
sourcefn eq(&self, other: &BuyerTaxInfo) -> bool
fn eq(&self, other: &BuyerTaxInfo) -> bool
sourceimpl Serialize for BuyerTaxInfo
impl Serialize for BuyerTaxInfo
impl StructuralPartialEq for BuyerTaxInfo
Auto Trait Implementations
impl RefUnwindSafe for BuyerTaxInfo
impl Send for BuyerTaxInfo
impl Sync for BuyerTaxInfo
impl Unpin for BuyerTaxInfo
impl UnwindSafe for BuyerTaxInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more