pub struct DeliveryPriceData {
pub date: String,
pub delivery_price: f64,
}Expand description
Delivery price data
Fields§
§date: StringDate of the delivery price
delivery_price: f64Delivery price value
Trait Implementations§
Source§impl Clone for DeliveryPriceData
impl Clone for DeliveryPriceData
Source§fn clone(&self) -> DeliveryPriceData
fn clone(&self) -> DeliveryPriceData
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 DeliveryPriceData
impl Debug for DeliveryPriceData
Source§impl<'de> Deserialize<'de> for DeliveryPriceData
impl<'de> Deserialize<'de> for DeliveryPriceData
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 Display for DeliveryPriceData
impl Display for DeliveryPriceData
Auto Trait Implementations§
impl Freeze for DeliveryPriceData
impl RefUnwindSafe for DeliveryPriceData
impl Send for DeliveryPriceData
impl Sync for DeliveryPriceData
impl Unpin for DeliveryPriceData
impl UnwindSafe for DeliveryPriceData
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