Struct amazon_sp_fulfillment_outbound::models::fulfillment_preview_item::FulfillmentPreviewItem
source · [−]pub struct FulfillmentPreviewItem {
pub seller_sku: String,
pub quantity: i32,
pub seller_fulfillment_order_item_id: String,
pub estimated_shipping_weight: Option<Box<Weight>>,
pub shipping_weight_calculation_method: Option<ShippingWeightCalculationMethod>,
}Expand description
FulfillmentPreviewItem : Item information for a shipment in a fulfillment order preview.
Fields
seller_sku: StringThe seller SKU of the item.
quantity: i32The item quantity.
seller_fulfillment_order_item_id: StringA fulfillment order item identifier that the seller created with a call to the createFulfillmentOrder operation.
estimated_shipping_weight: Option<Box<Weight>>shipping_weight_calculation_method: Option<ShippingWeightCalculationMethod>The method used to calculate the estimated shipping weight.
Implementations
Trait Implementations
sourceimpl Clone for FulfillmentPreviewItem
impl Clone for FulfillmentPreviewItem
sourcefn clone(&self) -> FulfillmentPreviewItem
fn clone(&self) -> FulfillmentPreviewItem
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 FulfillmentPreviewItem
impl Debug for FulfillmentPreviewItem
sourceimpl Default for FulfillmentPreviewItem
impl Default for FulfillmentPreviewItem
sourcefn default() -> FulfillmentPreviewItem
fn default() -> FulfillmentPreviewItem
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for FulfillmentPreviewItem
impl<'de> Deserialize<'de> for FulfillmentPreviewItem
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<FulfillmentPreviewItem> for FulfillmentPreviewItem
impl PartialEq<FulfillmentPreviewItem> for FulfillmentPreviewItem
sourcefn eq(&self, other: &FulfillmentPreviewItem) -> bool
fn eq(&self, other: &FulfillmentPreviewItem) -> bool
sourceimpl Serialize for FulfillmentPreviewItem
impl Serialize for FulfillmentPreviewItem
impl StructuralPartialEq for FulfillmentPreviewItem
Auto Trait Implementations
impl RefUnwindSafe for FulfillmentPreviewItem
impl Send for FulfillmentPreviewItem
impl Sync for FulfillmentPreviewItem
impl Unpin for FulfillmentPreviewItem
impl UnwindSafe for FulfillmentPreviewItem
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