pub struct TaxRateResponseModel {
pub object: Option<String>,
pub id: Option<String>,
pub country: Option<String>,
pub state: Option<String>,
pub postal_code: Option<String>,
pub rate: Option<f64>,
}
Fields§
§object: Option<String>
§id: Option<String>
§country: Option<String>
§state: Option<String>
§postal_code: Option<String>
§rate: Option<f64>
Implementations§
Source§impl TaxRateResponseModel
impl TaxRateResponseModel
pub fn new() -> TaxRateResponseModel
Trait Implementations§
Source§impl Clone for TaxRateResponseModel
impl Clone for TaxRateResponseModel
Source§fn clone(&self) -> TaxRateResponseModel
fn clone(&self) -> TaxRateResponseModel
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 TaxRateResponseModel
impl Debug for TaxRateResponseModel
Source§impl Default for TaxRateResponseModel
impl Default for TaxRateResponseModel
Source§fn default() -> TaxRateResponseModel
fn default() -> TaxRateResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaxRateResponseModel
impl<'de> Deserialize<'de> for TaxRateResponseModel
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 TaxRateResponseModel
impl PartialEq for TaxRateResponseModel
Source§impl Serialize for TaxRateResponseModel
impl Serialize for TaxRateResponseModel
impl StructuralPartialEq for TaxRateResponseModel
Auto Trait Implementations§
impl Freeze for TaxRateResponseModel
impl RefUnwindSafe for TaxRateResponseModel
impl Send for TaxRateResponseModel
impl Sync for TaxRateResponseModel
impl Unpin for TaxRateResponseModel
impl UnwindSafe for TaxRateResponseModel
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