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§
Source§impl 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§
Source§impl Clone for InventoryDetails
impl Clone for InventoryDetails
Source§fn clone(&self) -> InventoryDetails
fn clone(&self) -> InventoryDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InventoryDetails
impl Debug for InventoryDetails
Source§impl Default for InventoryDetails
impl Default for InventoryDetails
Source§fn default() -> InventoryDetails
fn default() -> InventoryDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InventoryDetails
impl<'de> Deserialize<'de> for InventoryDetails
Source§fn 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
Source§impl PartialEq for InventoryDetails
impl PartialEq for InventoryDetails
Source§impl Serialize for InventoryDetails
impl Serialize for InventoryDetails
impl StructuralPartialEq for InventoryDetails
Auto Trait Implementations§
impl Freeze for InventoryDetails
impl RefUnwindSafe for InventoryDetails
impl Send for InventoryDetails
impl Sync for InventoryDetails
impl Unpin for InventoryDetails
impl UnwindSafe for InventoryDetails
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more