Struct amazon_sp_vendor_orders::models::tax_registration_details::TaxRegistrationDetails
source · [−]pub struct TaxRegistrationDetails {
pub tax_registration_type: TaxRegistrationType,
pub tax_registration_number: String,
}Expand description
TaxRegistrationDetails : Tax registration details of the entity.
Fields
tax_registration_type: TaxRegistrationTypeTax registration type for the entity.
tax_registration_number: StringTax registration number for the entity. For example, VAT ID.
Implementations
sourceimpl TaxRegistrationDetails
impl TaxRegistrationDetails
sourcepub fn new(
tax_registration_type: TaxRegistrationType,
tax_registration_number: String
) -> TaxRegistrationDetails
pub fn new(
tax_registration_type: TaxRegistrationType,
tax_registration_number: String
) -> TaxRegistrationDetails
Tax registration details of the entity.
Trait Implementations
sourceimpl Clone for TaxRegistrationDetails
impl Clone for TaxRegistrationDetails
sourcefn clone(&self) -> TaxRegistrationDetails
fn clone(&self) -> TaxRegistrationDetails
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 TaxRegistrationDetails
impl Debug for TaxRegistrationDetails
sourceimpl Default for TaxRegistrationDetails
impl Default for TaxRegistrationDetails
sourcefn default() -> TaxRegistrationDetails
fn default() -> TaxRegistrationDetails
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for TaxRegistrationDetails
impl<'de> Deserialize<'de> for TaxRegistrationDetails
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<TaxRegistrationDetails> for TaxRegistrationDetails
impl PartialEq<TaxRegistrationDetails> for TaxRegistrationDetails
sourcefn eq(&self, other: &TaxRegistrationDetails) -> bool
fn eq(&self, other: &TaxRegistrationDetails) -> bool
sourceimpl Serialize for TaxRegistrationDetails
impl Serialize for TaxRegistrationDetails
impl StructuralPartialEq for TaxRegistrationDetails
Auto Trait Implementations
impl RefUnwindSafe for TaxRegistrationDetails
impl Send for TaxRegistrationDetails
impl Sync for TaxRegistrationDetails
impl Unpin for TaxRegistrationDetails
impl UnwindSafe for TaxRegistrationDetails
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