pub struct DeliveryDataRequest {
pub variety_id: String,
pub start_month: String,
pub end_month: String,
pub variety_type: String,
}Expand description
Request for delivery data.
Fields§
§variety_id: StringVariety ID.
start_month: StringStart month (YYYYMM format).
end_month: StringEnd month (YYYYMM format).
variety_type: StringVariety type (“0” = physical delivery, “1” = average price delivery).
Trait Implementations§
Source§impl Clone for DeliveryDataRequest
impl Clone for DeliveryDataRequest
Source§fn clone(&self) -> DeliveryDataRequest
fn clone(&self) -> DeliveryDataRequest
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 DeliveryDataRequest
impl Debug for DeliveryDataRequest
Auto Trait Implementations§
impl Freeze for DeliveryDataRequest
impl RefUnwindSafe for DeliveryDataRequest
impl Send for DeliveryDataRequest
impl Sync for DeliveryDataRequest
impl Unpin for DeliveryDataRequest
impl UnwindSafe for DeliveryDataRequest
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