pub struct BondedDelivery {
pub delivery_date: String,
pub delivery_way: String,
pub variety_id: String,
pub contract_id: String,
pub wh_abbr: String,
pub bonded_delivery_price: String,
pub delivery_price: String,
}Expand description
Bonded delivery settlement price.
Fields§
§delivery_date: StringDelivery date.
delivery_way: StringDelivery way.
variety_id: StringVariety ID (e.g. i-铁矿石).
contract_id: StringContract ID.
wh_abbr: StringWarehouse abbreviation.
bonded_delivery_price: StringBonded delivery price.
delivery_price: StringDelivery price.
Trait Implementations§
Source§impl Clone for BondedDelivery
impl Clone for BondedDelivery
Source§fn clone(&self) -> BondedDelivery
fn clone(&self) -> BondedDelivery
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 BondedDelivery
impl Debug for BondedDelivery
Source§impl<'de> Deserialize<'de> for BondedDelivery
impl<'de> Deserialize<'de> for BondedDelivery
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 BondedDelivery
impl RefUnwindSafe for BondedDelivery
impl Send for BondedDelivery
impl Sync for BondedDelivery
impl Unpin for BondedDelivery
impl UnwindSafe for BondedDelivery
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