pub struct DeliveryData {
pub variety: String,
pub contract_id: String,
pub delivery_date: String,
pub delivery_qty: i64,
pub delivery_amt: String,
}Expand description
Delivery data.
Fields§
§variety: StringVariety name.
contract_id: StringContract ID.
delivery_date: StringDelivery date.
delivery_qty: i64Delivery quantity.
delivery_amt: StringDelivery amount.
Trait Implementations§
Source§impl Clone for DeliveryData
impl Clone for DeliveryData
Source§fn clone(&self) -> DeliveryData
fn clone(&self) -> DeliveryData
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 DeliveryData
impl Debug for DeliveryData
Source§impl<'de> Deserialize<'de> for DeliveryData
impl<'de> Deserialize<'de> for DeliveryData
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 DeliveryData
impl RefUnwindSafe for DeliveryData
impl Send for DeliveryData
impl Sync for DeliveryData
impl Unpin for DeliveryData
impl UnwindSafe for DeliveryData
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