pub struct InventorySummary {
pub asin: Option<String>,
pub fn_sku: Option<String>,
pub seller_sku: Option<String>,
pub condition: Option<String>,
pub inventory_details: Option<Box<InventoryDetails>>,
pub last_updated_time: Option<String>,
pub product_name: Option<String>,
pub total_quantity: Option<i32>,
}Expand description
InventorySummary : Inventory summary for a specific item.
Fields
asin: Option<String>The Amazon Standard Identification Number (ASIN) of an item.
fn_sku: Option<String>Amazon’s fulfillment network SKU identifier.
seller_sku: Option<String>The seller SKU of the item.
condition: Option<String>The condition of the item as described by the seller (for example, New Item).
inventory_details: Option<Box<InventoryDetails>>last_updated_time: Option<String>The date and time that any quantity was last updated.
product_name: Option<String>The localized language product title of the item within the specific marketplace.
total_quantity: Option<i32>The total number of units in an inbound shipment or in Amazon fulfillment centers.
Implementations
sourceimpl InventorySummary
impl InventorySummary
sourcepub fn new() -> InventorySummary
pub fn new() -> InventorySummary
Inventory summary for a specific item.
Trait Implementations
sourceimpl Clone for InventorySummary
impl Clone for InventorySummary
sourcefn clone(&self) -> InventorySummary
fn clone(&self) -> InventorySummary
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 InventorySummary
impl Debug for InventorySummary
sourceimpl Default for InventorySummary
impl Default for InventorySummary
sourcefn default() -> InventorySummary
fn default() -> InventorySummary
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for InventorySummary
impl<'de> Deserialize<'de> for InventorySummary
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<InventorySummary> for InventorySummary
impl PartialEq<InventorySummary> for InventorySummary
sourcefn eq(&self, other: &InventorySummary) -> bool
fn eq(&self, other: &InventorySummary) -> bool
sourceimpl Serialize for InventorySummary
impl Serialize for InventorySummary
impl StructuralPartialEq for InventorySummary
Auto Trait Implementations
impl RefUnwindSafe for InventorySummary
impl Send for InventorySummary
impl Sync for InventorySummary
impl Unpin for InventorySummary
impl UnwindSafe for InventorySummary
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