Struct amazon_sp_fulfillment_inbound::models::inbound_shipment_plan_item::InboundShipmentPlanItem
source · [−]pub struct InboundShipmentPlanItem {
pub seller_sku: String,
pub fulfillment_network_sku: String,
pub quantity: i32,
pub prep_details_list: Option<Vec<PrepDetails>>,
}Expand description
InboundShipmentPlanItem : Item information used to create an inbound shipment. Returned by the createInboundShipmentPlan operation.
Fields
seller_sku: StringThe seller SKU of the item.
fulfillment_network_sku: StringAmazon’s fulfillment network SKU of the item.
quantity: i32The item quantity.
prep_details_list: Option<Vec<PrepDetails>>A list of preparation instructions and who is responsible for that preparation.
Implementations
Trait Implementations
sourceimpl Clone for InboundShipmentPlanItem
impl Clone for InboundShipmentPlanItem
sourcefn clone(&self) -> InboundShipmentPlanItem
fn clone(&self) -> InboundShipmentPlanItem
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 InboundShipmentPlanItem
impl Debug for InboundShipmentPlanItem
sourceimpl Default for InboundShipmentPlanItem
impl Default for InboundShipmentPlanItem
sourcefn default() -> InboundShipmentPlanItem
fn default() -> InboundShipmentPlanItem
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for InboundShipmentPlanItem
impl<'de> Deserialize<'de> for InboundShipmentPlanItem
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<InboundShipmentPlanItem> for InboundShipmentPlanItem
impl PartialEq<InboundShipmentPlanItem> for InboundShipmentPlanItem
sourcefn eq(&self, other: &InboundShipmentPlanItem) -> bool
fn eq(&self, other: &InboundShipmentPlanItem) -> bool
sourceimpl Serialize for InboundShipmentPlanItem
impl Serialize for InboundShipmentPlanItem
impl StructuralPartialEq for InboundShipmentPlanItem
Auto Trait Implementations
impl RefUnwindSafe for InboundShipmentPlanItem
impl Send for InboundShipmentPlanItem
impl Sync for InboundShipmentPlanItem
impl Unpin for InboundShipmentPlanItem
impl UnwindSafe for InboundShipmentPlanItem
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