pub struct DeliveryPriceRecord {
pub symbol: Option<String>,
pub delivery_price: Option<String>,
pub delivery_time: Option<String>,
}Expand description
Delivery price record.
Fields§
§symbol: Option<String>§delivery_price: Option<String>§delivery_time: Option<String>Trait Implementations§
Source§impl Clone for DeliveryPriceRecord
impl Clone for DeliveryPriceRecord
Source§fn clone(&self) -> DeliveryPriceRecord
fn clone(&self) -> DeliveryPriceRecord
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 DeliveryPriceRecord
impl Debug for DeliveryPriceRecord
Source§impl<'de> Deserialize<'de> for DeliveryPriceRecord
impl<'de> Deserialize<'de> for DeliveryPriceRecord
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 DeliveryPriceRecord
impl RefUnwindSafe for DeliveryPriceRecord
impl Send for DeliveryPriceRecord
impl Sync for DeliveryPriceRecord
impl Unpin for DeliveryPriceRecord
impl UnsafeUnpin for DeliveryPriceRecord
impl UnwindSafe for DeliveryPriceRecord
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