pub struct ReservedQuantity {
pub total_reserved_quantity: Option<i32>,
pub pending_customer_order_quantity: Option<i32>,
pub pending_transshipment_quantity: Option<i32>,
pub fc_processing_quantity: Option<i32>,
}Expand description
ReservedQuantity : The quantity of reserved inventory.
Fields§
§total_reserved_quantity: Option<i32>The total number of units in Amazon’s fulfillment network that are currently being picked, packed, and shipped; or are sidelined for measurement, sampling, or other internal processes.
pending_customer_order_quantity: Option<i32>The number of units reserved for customer orders.
pending_transshipment_quantity: Option<i32>The number of units being transferred from one fulfillment center to another.
fc_processing_quantity: Option<i32>The number of units that have been sidelined at the fulfillment center for additional processing.
Implementations§
Source§impl ReservedQuantity
impl ReservedQuantity
Sourcepub fn new() -> ReservedQuantity
pub fn new() -> ReservedQuantity
The quantity of reserved inventory.
Trait Implementations§
Source§impl Clone for ReservedQuantity
impl Clone for ReservedQuantity
Source§fn clone(&self) -> ReservedQuantity
fn clone(&self) -> ReservedQuantity
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 ReservedQuantity
impl Debug for ReservedQuantity
Source§impl Default for ReservedQuantity
impl Default for ReservedQuantity
Source§fn default() -> ReservedQuantity
fn default() -> ReservedQuantity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReservedQuantity
impl<'de> Deserialize<'de> for ReservedQuantity
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 ReservedQuantity
impl PartialEq for ReservedQuantity
Source§impl Serialize for ReservedQuantity
impl Serialize for ReservedQuantity
impl StructuralPartialEq for ReservedQuantity
Auto Trait Implementations§
impl Freeze for ReservedQuantity
impl RefUnwindSafe for ReservedQuantity
impl Send for ReservedQuantity
impl Sync for ReservedQuantity
impl Unpin for ReservedQuantity
impl UnwindSafe for ReservedQuantity
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