pub struct InventoryDetails {
pub fulfillable_quantity: Option<i32>,
pub inbound_working_quantity: Option<i32>,
pub inbound_shipped_quantity: Option<i32>,
pub inbound_receiving_quantity: Option<i32>,
pub reserved_quantity: Option<Box<ReservedQuantity>>,
pub researching_quantity: Option<Box<ResearchingQuantity>>,
pub unfulfillable_quantity: Option<Box<UnfulfillableQuantity>>,
}Expand description
InventoryDetails : Summarized inventory details. This object will not appear if the details parameter in the request is false.
Fields
fulfillable_quantity: Option<i32>The item quantity that can be picked, packed, and shipped.
inbound_working_quantity: Option<i32>The number of units in an inbound shipment for which you have notified Amazon.
inbound_shipped_quantity: Option<i32>The number of units in an inbound shipment that you have notified Amazon about and have provided a tracking number.
inbound_receiving_quantity: Option<i32>The number of units that have not yet been received at an Amazon fulfillment center for processing, but are part of an inbound shipment with some units that have already been received and processed.
reserved_quantity: Option<Box<ReservedQuantity>>researching_quantity: Option<Box<ResearchingQuantity>>unfulfillable_quantity: Option<Box<UnfulfillableQuantity>>Implementations
sourceimpl InventoryDetails
impl InventoryDetails
sourcepub fn new() -> InventoryDetails
pub fn new() -> InventoryDetails
Summarized inventory details. This object will not appear if the details parameter in the request is false.
Trait Implementations
sourceimpl Clone for InventoryDetails
impl Clone for InventoryDetails
sourcefn clone(&self) -> InventoryDetails
fn clone(&self) -> InventoryDetails
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 InventoryDetails
impl Debug for InventoryDetails
sourceimpl Default for InventoryDetails
impl Default for InventoryDetails
sourcefn default() -> InventoryDetails
fn default() -> InventoryDetails
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for InventoryDetails
impl<'de> Deserialize<'de> for InventoryDetails
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<InventoryDetails> for InventoryDetails
impl PartialEq<InventoryDetails> for InventoryDetails
sourcefn eq(&self, other: &InventoryDetails) -> bool
fn eq(&self, other: &InventoryDetails) -> bool
sourceimpl Serialize for InventoryDetails
impl Serialize for InventoryDetails
impl StructuralPartialEq for InventoryDetails
Auto Trait Implementations
impl RefUnwindSafe for InventoryDetails
impl Send for InventoryDetails
impl Sync for InventoryDetails
impl Unpin for InventoryDetails
impl UnwindSafe for InventoryDetails
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