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 Default for TaxInfoUpdateRequestModel
impl Default for TaxInfoUpdateRequestModel
Source§fn default() -> TaxInfoUpdateRequestModel
fn default() -> TaxInfoUpdateRequestModel
Returns the “default value” for a type. Read more
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
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