pub struct DeliveryMatch {
pub contract_id: String,
pub match_date: String,
pub buy_member_id: String,
pub sell_member_id: String,
pub delivery_qty: i64,
pub delivery_price: String,
}Expand description
Delivery match data.
Fields§
§contract_id: StringContract ID.
match_date: StringMatch date.
buy_member_id: StringBuy member ID.
sell_member_id: StringSell member ID.
delivery_qty: i64Delivery quantity.
delivery_price: StringDelivery price.
Trait Implementations§
Source§impl Clone for DeliveryMatch
impl Clone for DeliveryMatch
Source§fn clone(&self) -> DeliveryMatch
fn clone(&self) -> DeliveryMatch
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 DeliveryMatch
impl Debug for DeliveryMatch
Source§impl<'de> Deserialize<'de> for DeliveryMatch
impl<'de> Deserialize<'de> for DeliveryMatch
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 DeliveryMatch
impl RefUnwindSafe for DeliveryMatch
impl Send for DeliveryMatch
impl Sync for DeliveryMatch
impl Unpin for DeliveryMatch
impl UnwindSafe for DeliveryMatch
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