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
sourceimpl ReservedQuantity
impl ReservedQuantity
sourcepub fn new() -> ReservedQuantity
pub fn new() -> ReservedQuantity
The quantity of reserved inventory.
Trait Implementations
sourceimpl Clone for ReservedQuantity
impl Clone for ReservedQuantity
sourcefn clone(&self) -> ReservedQuantity
fn clone(&self) -> ReservedQuantity
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 ReservedQuantity
impl Debug for ReservedQuantity
sourceimpl Default for ReservedQuantity
impl Default for ReservedQuantity
sourcefn default() -> ReservedQuantity
fn default() -> ReservedQuantity
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ReservedQuantity
impl<'de> Deserialize<'de> for ReservedQuantity
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<ReservedQuantity> for ReservedQuantity
impl PartialEq<ReservedQuantity> for ReservedQuantity
sourcefn eq(&self, other: &ReservedQuantity) -> bool
fn eq(&self, other: &ReservedQuantity) -> bool
sourceimpl Serialize for ReservedQuantity
impl Serialize for ReservedQuantity
impl StructuralPartialEq for ReservedQuantity
Auto Trait Implementations
impl RefUnwindSafe for ReservedQuantity
impl Send for ReservedQuantity
impl Sync for ReservedQuantity
impl Unpin for ReservedQuantity
impl UnwindSafe for ReservedQuantity
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