pub struct PriceRange {
pub price_range_type: Option<String>,
pub currency: String,
pub min: Option<f64>,
pub max: Option<f64>,
}Fields§
§price_range_type: Option<String>§currency: String§min: Option<f64>§max: Option<f64>Trait Implementations§
Source§impl Clone for PriceRange
impl Clone for PriceRange
Source§fn clone(&self) -> PriceRange
fn clone(&self) -> PriceRange
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PriceRange
impl Debug for PriceRange
Source§impl<'de> Deserialize<'de> for PriceRange
impl<'de> Deserialize<'de> for PriceRange
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 PriceRange
impl PartialEq for PriceRange
Source§fn eq(&self, other: &PriceRange) -> bool
fn eq(&self, other: &PriceRange) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PriceRange
impl Serialize for PriceRange
impl StructuralPartialEq for PriceRange
Auto Trait Implementations§
impl Freeze for PriceRange
impl RefUnwindSafe for PriceRange
impl Send for PriceRange
impl Sync for PriceRange
impl Unpin for PriceRange
impl UnsafeUnpin for PriceRange
impl UnwindSafe for PriceRange
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