Struct amazon_sp_fulfillment_outbound::models::fulfillment_shipment_item::FulfillmentShipmentItem
source · [−]pub struct FulfillmentShipmentItem {
pub seller_sku: String,
pub seller_fulfillment_order_item_id: String,
pub quantity: i32,
pub package_number: Option<i32>,
pub serial_number: Option<String>,
}Expand description
FulfillmentShipmentItem : Item information for a shipment in a fulfillment order.
Fields
seller_sku: StringThe seller SKU of the item.
seller_fulfillment_order_item_id: StringThe fulfillment order item identifier that the seller created and submitted with a call to the createFulfillmentOrder operation.
quantity: i32The item quantity.
package_number: Option<i32>An identifier for the package that contains the item quantity.
serial_number: Option<String>The serial number of the shipped item.
Implementations
Trait Implementations
sourceimpl Clone for FulfillmentShipmentItem
impl Clone for FulfillmentShipmentItem
sourcefn clone(&self) -> FulfillmentShipmentItem
fn clone(&self) -> FulfillmentShipmentItem
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for FulfillmentShipmentItem
impl Debug for FulfillmentShipmentItem
sourceimpl Default for FulfillmentShipmentItem
impl Default for FulfillmentShipmentItem
sourcefn default() -> FulfillmentShipmentItem
fn default() -> FulfillmentShipmentItem
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for FulfillmentShipmentItem
impl<'de> Deserialize<'de> for FulfillmentShipmentItem
sourcefn 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
sourceimpl PartialEq<FulfillmentShipmentItem> for FulfillmentShipmentItem
impl PartialEq<FulfillmentShipmentItem> for FulfillmentShipmentItem
sourcefn eq(&self, other: &FulfillmentShipmentItem) -> bool
fn eq(&self, other: &FulfillmentShipmentItem) -> bool
sourceimpl Serialize for FulfillmentShipmentItem
impl Serialize for FulfillmentShipmentItem
impl StructuralPartialEq for FulfillmentShipmentItem
Auto Trait Implementations
impl RefUnwindSafe for FulfillmentShipmentItem
impl Send for FulfillmentShipmentItem
impl Sync for FulfillmentShipmentItem
impl Unpin for FulfillmentShipmentItem
impl UnwindSafe for FulfillmentShipmentItem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more