Struct amazon_sp_fulfillment_inbound::models::inbound_shipment_plan::InboundShipmentPlan
source · [−]pub struct InboundShipmentPlan {
pub shipment_id: String,
pub destination_fulfillment_center_id: String,
pub ship_to_address: Box<Address>,
pub label_prep_type: LabelPrepType,
pub items: Vec<InboundShipmentPlanItem>,
pub estimated_box_contents_fee: Option<Box<BoxContentsFeeDetails>>,
}Expand description
InboundShipmentPlan : Inbound shipment information used to create an inbound shipment. Returned by the createInboundShipmentPlan operation.
Fields
shipment_id: StringA shipment identifier originally returned by the createInboundShipmentPlan operation.
destination_fulfillment_center_id: StringAn Amazon fulfillment center identifier created by Amazon.
ship_to_address: Box<Address>label_prep_type: LabelPrepTypeitems: Vec<InboundShipmentPlanItem>A list of inbound shipment plan item information.
estimated_box_contents_fee: Option<Box<BoxContentsFeeDetails>>Implementations
sourceimpl InboundShipmentPlan
impl InboundShipmentPlan
sourcepub fn new(
shipment_id: String,
destination_fulfillment_center_id: String,
ship_to_address: Address,
label_prep_type: LabelPrepType,
items: Vec<InboundShipmentPlanItem>
) -> InboundShipmentPlan
pub fn new(
shipment_id: String,
destination_fulfillment_center_id: String,
ship_to_address: Address,
label_prep_type: LabelPrepType,
items: Vec<InboundShipmentPlanItem>
) -> InboundShipmentPlan
Inbound shipment information used to create an inbound shipment. Returned by the createInboundShipmentPlan operation.
Trait Implementations
sourceimpl Clone for InboundShipmentPlan
impl Clone for InboundShipmentPlan
sourcefn clone(&self) -> InboundShipmentPlan
fn clone(&self) -> InboundShipmentPlan
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 InboundShipmentPlan
impl Debug for InboundShipmentPlan
sourceimpl Default for InboundShipmentPlan
impl Default for InboundShipmentPlan
sourcefn default() -> InboundShipmentPlan
fn default() -> InboundShipmentPlan
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for InboundShipmentPlan
impl<'de> Deserialize<'de> for InboundShipmentPlan
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<InboundShipmentPlan> for InboundShipmentPlan
impl PartialEq<InboundShipmentPlan> for InboundShipmentPlan
sourcefn eq(&self, other: &InboundShipmentPlan) -> bool
fn eq(&self, other: &InboundShipmentPlan) -> bool
sourceimpl Serialize for InboundShipmentPlan
impl Serialize for InboundShipmentPlan
impl StructuralPartialEq for InboundShipmentPlan
Auto Trait Implementations
impl RefUnwindSafe for InboundShipmentPlan
impl Send for InboundShipmentPlan
impl Sync for InboundShipmentPlan
impl Unpin for InboundShipmentPlan
impl UnwindSafe for InboundShipmentPlan
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