pub struct PackedItems {
pub item_sequence_number: Option<String>,
pub buyer_product_identifier: Option<String>,
pub vendor_product_identifier: Option<String>,
pub packed_quantity: Option<Box<ItemQuantity>>,
pub item_details: Option<Box<PackageItemDetails>>,
}Expand description
PackedItems : Details of the item being shipped.
Fields§
§item_sequence_number: Option<String>Item sequence number for the item. The first item will be 001, the second 002, and so on. This number is used as a reference to refer to this item from the carton or pallet level.
buyer_product_identifier: Option<String>Buyer Standard Identification Number (ASIN) of an item.
vendor_product_identifier: Option<String>The vendor selected product identification of the item. Should be the same as was sent in the purchase order.
packed_quantity: Option<Box<ItemQuantity>>§item_details: Option<Box<PackageItemDetails>>Implementations§
Source§impl PackedItems
impl PackedItems
Sourcepub fn new() -> PackedItems
pub fn new() -> PackedItems
Details of the item being shipped.
Trait Implementations§
Source§impl Clone for PackedItems
impl Clone for PackedItems
Source§fn clone(&self) -> PackedItems
fn clone(&self) -> PackedItems
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 PackedItems
impl Debug for PackedItems
Source§impl Default for PackedItems
impl Default for PackedItems
Source§fn default() -> PackedItems
fn default() -> PackedItems
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PackedItems
impl<'de> Deserialize<'de> for PackedItems
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
Source§impl PartialEq for PackedItems
impl PartialEq for PackedItems
Source§impl Serialize for PackedItems
impl Serialize for PackedItems
impl StructuralPartialEq for PackedItems
Auto Trait Implementations§
impl Freeze for PackedItems
impl RefUnwindSafe for PackedItems
impl Send for PackedItems
impl Sync for PackedItems
impl Unpin for PackedItems
impl UnwindSafe for PackedItems
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