pub struct ConvertedRegionPrice {
pub price: Option<Money>,
pub region_code: Option<String>,
pub tax_amount: Option<Money>,
}Expand description
A converted region price.
This type is not used in any activity, and only used as part of another schema.
Fields§
§price: Option<Money>The converted price tax inclusive.
region_code: Option<String>The region code of the region.
tax_amount: Option<Money>The tax amount of the converted price.
Trait Implementations§
Source§impl Clone for ConvertedRegionPrice
impl Clone for ConvertedRegionPrice
Source§fn clone(&self) -> ConvertedRegionPrice
fn clone(&self) -> ConvertedRegionPrice
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 ConvertedRegionPrice
impl Debug for ConvertedRegionPrice
Source§impl Default for ConvertedRegionPrice
impl Default for ConvertedRegionPrice
Source§fn default() -> ConvertedRegionPrice
fn default() -> ConvertedRegionPrice
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConvertedRegionPrice
impl<'de> Deserialize<'de> for ConvertedRegionPrice
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 Serialize for ConvertedRegionPrice
impl Serialize for ConvertedRegionPrice
impl Part for ConvertedRegionPrice
Auto Trait Implementations§
impl Freeze for ConvertedRegionPrice
impl RefUnwindSafe for ConvertedRegionPrice
impl Send for ConvertedRegionPrice
impl Sync for ConvertedRegionPrice
impl Unpin for ConvertedRegionPrice
impl UnwindSafe for ConvertedRegionPrice
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