pub struct WarehouseReceiptDetail {Show 13 fields
pub variety_order: String,
pub group_code_order: String,
pub wh_code_order: String,
pub wh_type: String,
pub variety: String,
pub gen_date: String,
pub wh_abbr: String,
pub delivery_abbr: String,
pub last_wbill_qty: i64,
pub reg_wbill_qty: i64,
pub logout_wbill_qty: i64,
pub wbill_qty: i64,
pub diff: i64,
}Expand description
Warehouse receipt detail entry.
Fields§
§variety_order: StringVariety order.
group_code_order: StringGroup code order.
wh_code_order: StringWarehouse code order.
wh_type: StringWarehouse type.
variety: StringVariety name.
gen_date: StringGeneration date.
wh_abbr: StringWarehouse abbreviation.
delivery_abbr: StringDelivery abbreviation.
last_wbill_qty: i64Yesterday’s warehouse bill quantity (lots).
reg_wbill_qty: i64Registered warehouse bill quantity.
logout_wbill_qty: i64Logout warehouse bill quantity.
wbill_qty: i64Today’s warehouse bill quantity (lots).
diff: i64Difference (lots).
Trait Implementations§
Source§impl Clone for WarehouseReceiptDetail
impl Clone for WarehouseReceiptDetail
Source§fn clone(&self) -> WarehouseReceiptDetail
fn clone(&self) -> WarehouseReceiptDetail
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 WarehouseReceiptDetail
impl Debug for WarehouseReceiptDetail
Source§impl<'de> Deserialize<'de> for WarehouseReceiptDetail
impl<'de> Deserialize<'de> for WarehouseReceiptDetail
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 WarehouseReceiptDetail
impl RefUnwindSafe for WarehouseReceiptDetail
impl Send for WarehouseReceiptDetail
impl Sync for WarehouseReceiptDetail
impl Unpin for WarehouseReceiptDetail
impl UnwindSafe for WarehouseReceiptDetail
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