pub struct DeliveryCost {
pub variety_code: String,
pub delivery_fee: f64,
pub inspection_fee: f64,
pub storage_fee: f64,
}Expand description
Delivery cost data.
Fields§
§variety_code: StringVariety code.
delivery_fee: f64Delivery fee.
inspection_fee: f64Inspection fee.
storage_fee: f64Storage fee.
Trait Implementations§
Source§impl Clone for DeliveryCost
impl Clone for DeliveryCost
Source§fn clone(&self) -> DeliveryCost
fn clone(&self) -> DeliveryCost
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 DeliveryCost
impl Debug for DeliveryCost
Source§impl<'de> Deserialize<'de> for DeliveryCost
impl<'de> Deserialize<'de> for DeliveryCost
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 DeliveryCost
impl RefUnwindSafe for DeliveryCost
impl Send for DeliveryCost
impl Sync for DeliveryCost
impl Unpin for DeliveryCost
impl UnwindSafe for DeliveryCost
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