pub struct TaxInfoUpdateRequestModel {
pub country: String,
pub postal_code: Option<String>,
}
Fields§
§country: String
§postal_code: Option<String>
Implementations§
source§impl TaxInfoUpdateRequestModel
impl TaxInfoUpdateRequestModel
pub fn new(country: String) -> TaxInfoUpdateRequestModel
Trait Implementations§
source§impl Clone for TaxInfoUpdateRequestModel
impl Clone for TaxInfoUpdateRequestModel
source§fn clone(&self) -> TaxInfoUpdateRequestModel
fn clone(&self) -> TaxInfoUpdateRequestModel
Returns a copy 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 TaxInfoUpdateRequestModel
impl Debug for TaxInfoUpdateRequestModel
source§impl<'de> Deserialize<'de> for TaxInfoUpdateRequestModel
impl<'de> Deserialize<'de> for TaxInfoUpdateRequestModel
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 TaxInfoUpdateRequestModel
impl PartialEq for TaxInfoUpdateRequestModel
source§fn eq(&self, other: &TaxInfoUpdateRequestModel) -> bool
fn eq(&self, other: &TaxInfoUpdateRequestModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TaxInfoUpdateRequestModel
Auto Trait Implementations§
impl Freeze for TaxInfoUpdateRequestModel
impl RefUnwindSafe for TaxInfoUpdateRequestModel
impl Send for TaxInfoUpdateRequestModel
impl Sync for TaxInfoUpdateRequestModel
impl Unpin for TaxInfoUpdateRequestModel
impl UnwindSafe for TaxInfoUpdateRequestModel
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