pub struct ProductOffer {
pub product_id: Option<String>,
pub current_price: Option<String>,
pub buy_low_price: Option<Vec<PriceQuote>>,
pub sell_high_price: Option<Vec<PriceQuote>>,
}Fields§
§product_id: Option<String>§current_price: Option<String>§buy_low_price: Option<Vec<PriceQuote>>§sell_high_price: Option<Vec<PriceQuote>>Trait Implementations§
Source§impl Clone for ProductOffer
impl Clone for ProductOffer
Source§fn clone(&self) -> ProductOffer
fn clone(&self) -> ProductOffer
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 ProductOffer
impl Debug for ProductOffer
Source§impl<'de> Deserialize<'de> for ProductOffer
impl<'de> Deserialize<'de> for ProductOffer
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
Auto Trait Implementations§
impl Freeze for ProductOffer
impl RefUnwindSafe for ProductOffer
impl Send for ProductOffer
impl Sync for ProductOffer
impl Unpin for ProductOffer
impl UnsafeUnpin for ProductOffer
impl UnwindSafe for ProductOffer
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