pub struct DeliveryMatch {
pub variety_code: String,
pub buy_member: String,
pub sell_member: String,
pub volume: i64,
}Expand description
Delivery match data.
Fields§
§variety_code: StringVariety code.
buy_member: StringBuy member.
sell_member: StringSell member.
volume: i64Volume.
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