pub struct BuyerTaxInformation {
pub buyer_legal_company_name: Option<String>,
pub buyer_business_address: Option<String>,
pub buyer_tax_registration_id: Option<String>,
pub buyer_tax_office: Option<String>,
}Expand description
BuyerTaxInformation : Contains the business invoice tax information. Available only in the TR marketplace.
Fields
buyer_legal_company_name: Option<String>Business buyer’s company legal name.
buyer_business_address: Option<String>Business buyer’s address.
buyer_tax_registration_id: Option<String>Business buyer’s tax registration ID.
buyer_tax_office: Option<String>Business buyer’s tax office.
Implementations
sourceimpl BuyerTaxInformation
impl BuyerTaxInformation
sourcepub fn new() -> BuyerTaxInformation
pub fn new() -> BuyerTaxInformation
Contains the business invoice tax information. Available only in the TR marketplace.
Trait Implementations
sourceimpl Clone for BuyerTaxInformation
impl Clone for BuyerTaxInformation
sourcefn clone(&self) -> BuyerTaxInformation
fn clone(&self) -> BuyerTaxInformation
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 BuyerTaxInformation
impl Debug for BuyerTaxInformation
sourceimpl Default for BuyerTaxInformation
impl Default for BuyerTaxInformation
sourcefn default() -> BuyerTaxInformation
fn default() -> BuyerTaxInformation
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for BuyerTaxInformation
impl<'de> Deserialize<'de> for BuyerTaxInformation
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<BuyerTaxInformation> for BuyerTaxInformation
impl PartialEq<BuyerTaxInformation> for BuyerTaxInformation
sourcefn eq(&self, other: &BuyerTaxInformation) -> bool
fn eq(&self, other: &BuyerTaxInformation) -> bool
sourceimpl Serialize for BuyerTaxInformation
impl Serialize for BuyerTaxInformation
impl StructuralPartialEq for BuyerTaxInformation
Auto Trait Implementations
impl RefUnwindSafe for BuyerTaxInformation
impl Send for BuyerTaxInformation
impl Sync for BuyerTaxInformation
impl Unpin for BuyerTaxInformation
impl UnwindSafe for BuyerTaxInformation
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