pub struct DeliveryPriceEntry {
pub symbol: String,
pub delivery_price: Decimal,
pub delivery_time: Timestamp,
}Fields§
§symbol: String§delivery_price: Decimal§delivery_time: TimestampTrait Implementations§
Source§impl Debug for DeliveryPriceEntry
impl Debug for DeliveryPriceEntry
Source§impl<'de> Deserialize<'de> for DeliveryPriceEntry
impl<'de> Deserialize<'de> for DeliveryPriceEntry
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 DeliveryPriceEntry
impl PartialEq for DeliveryPriceEntry
Source§fn eq(&self, other: &DeliveryPriceEntry) -> bool
fn eq(&self, other: &DeliveryPriceEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeliveryPriceEntry
Auto Trait Implementations§
impl Freeze for DeliveryPriceEntry
impl RefUnwindSafe for DeliveryPriceEntry
impl Send for DeliveryPriceEntry
impl Sync for DeliveryPriceEntry
impl Unpin for DeliveryPriceEntry
impl UnsafeUnpin for DeliveryPriceEntry
impl UnwindSafe for DeliveryPriceEntry
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