pub struct WarehouseReceipt {
pub entity_list: Vec<WarehouseReceiptDetail>,
pub if_agio_flag: String,
pub agio_deli_type: String,
pub if_agio_brand_flag: String,
}Expand description
Warehouse receipt daily report response.
Fields§
§entity_list: Vec<WarehouseReceiptDetail>Entity list containing warehouse receipt details.
if_agio_flag: StringWhether has agio flag.
agio_deli_type: StringAgio delivery type.
if_agio_brand_flag: StringWhether has agio brand flag.
Trait Implementations§
Source§impl Clone for WarehouseReceipt
impl Clone for WarehouseReceipt
Source§fn clone(&self) -> WarehouseReceipt
fn clone(&self) -> WarehouseReceipt
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 WarehouseReceipt
impl Debug for WarehouseReceipt
Source§impl<'de> Deserialize<'de> for WarehouseReceipt
impl<'de> Deserialize<'de> for WarehouseReceipt
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 WarehouseReceipt
impl RefUnwindSafe for WarehouseReceipt
impl Send for WarehouseReceipt
impl Sync for WarehouseReceipt
impl Unpin for WarehouseReceipt
impl UnwindSafe for WarehouseReceipt
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