pub struct TaxClassification {
pub name: Option<String>,
pub value: Option<String>,
}Expand description
TaxClassification : The tax classification of the order.
Fields§
§name: Option<String>The type of tax.
value: Option<String>The buyer’s tax identifier.
Implementations§
Source§impl TaxClassification
impl TaxClassification
Sourcepub fn new() -> TaxClassification
pub fn new() -> TaxClassification
The tax classification of the order.
Trait Implementations§
Source§impl Clone for TaxClassification
impl Clone for TaxClassification
Source§fn clone(&self) -> TaxClassification
fn clone(&self) -> TaxClassification
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 TaxClassification
impl Debug for TaxClassification
Source§impl Default for TaxClassification
impl Default for TaxClassification
Source§fn default() -> TaxClassification
fn default() -> TaxClassification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaxClassification
impl<'de> Deserialize<'de> for TaxClassification
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 TaxClassification
impl PartialEq for TaxClassification
Source§impl Serialize for TaxClassification
impl Serialize for TaxClassification
impl StructuralPartialEq for TaxClassification
Auto Trait Implementations§
impl Freeze for TaxClassification
impl RefUnwindSafe for TaxClassification
impl Send for TaxClassification
impl Sync for TaxClassification
impl Unpin for TaxClassification
impl UnwindSafe for TaxClassification
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