pub struct UnfulfillableQuantity {
pub total_unfulfillable_quantity: Option<i32>,
pub customer_damaged_quantity: Option<i32>,
pub warehouse_damaged_quantity: Option<i32>,
pub distributor_damaged_quantity: Option<i32>,
pub carrier_damaged_quantity: Option<i32>,
pub defective_quantity: Option<i32>,
pub expired_quantity: Option<i32>,
}Expand description
UnfulfillableQuantity : The quantity of unfulfillable inventory.
Fields
total_unfulfillable_quantity: Option<i32>The total number of units in Amazon’s fulfillment network in unsellable condition.
customer_damaged_quantity: Option<i32>The number of units in customer damaged disposition.
warehouse_damaged_quantity: Option<i32>The number of units in warehouse damaged disposition.
distributor_damaged_quantity: Option<i32>The number of units in distributor damaged disposition.
carrier_damaged_quantity: Option<i32>The number of units in carrier damaged disposition.
defective_quantity: Option<i32>The number of units in defective disposition.
expired_quantity: Option<i32>The number of units in expired disposition.
Implementations
sourceimpl UnfulfillableQuantity
impl UnfulfillableQuantity
sourcepub fn new() -> UnfulfillableQuantity
pub fn new() -> UnfulfillableQuantity
The quantity of unfulfillable inventory.
Trait Implementations
sourceimpl Clone for UnfulfillableQuantity
impl Clone for UnfulfillableQuantity
sourcefn clone(&self) -> UnfulfillableQuantity
fn clone(&self) -> UnfulfillableQuantity
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 UnfulfillableQuantity
impl Debug for UnfulfillableQuantity
sourceimpl Default for UnfulfillableQuantity
impl Default for UnfulfillableQuantity
sourcefn default() -> UnfulfillableQuantity
fn default() -> UnfulfillableQuantity
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for UnfulfillableQuantity
impl<'de> Deserialize<'de> for UnfulfillableQuantity
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<UnfulfillableQuantity> for UnfulfillableQuantity
impl PartialEq<UnfulfillableQuantity> for UnfulfillableQuantity
sourcefn eq(&self, other: &UnfulfillableQuantity) -> bool
fn eq(&self, other: &UnfulfillableQuantity) -> bool
sourceimpl Serialize for UnfulfillableQuantity
impl Serialize for UnfulfillableQuantity
impl StructuralPartialEq for UnfulfillableQuantity
Auto Trait Implementations
impl RefUnwindSafe for UnfulfillableQuantity
impl Send for UnfulfillableQuantity
impl Sync for UnfulfillableQuantity
impl Unpin for UnfulfillableQuantity
impl UnwindSafe for UnfulfillableQuantity
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