pub struct FeatureSku {
pub seller_sku: Option<String>,
pub fn_sku: Option<String>,
pub asin: Option<String>,
pub sku_count: Option<f32>,
pub overlapping_skus: Option<Vec<String>>,
}Expand description
FeatureSku : Information about an SKU, including the count available, identifiers, and a list of overlapping SKUs that share the same inventory pool.
Fields
seller_sku: Option<String>Used to identify an item in the given marketplace. SellerSKU is qualified by the seller’s SellerId, which is included with every operation that you submit.
fn_sku: Option<String>The unique SKU used by Amazon’s fulfillment network.
asin: Option<String>The Amazon Standard Identification Number (ASIN) of the item.
sku_count: Option<f32>The number of SKUs available for this service.
overlapping_skus: Option<Vec<String>>Other seller SKUs that are shared across the same inventory.
Implementations
sourceimpl FeatureSku
impl FeatureSku
sourcepub fn new() -> FeatureSku
pub fn new() -> FeatureSku
Information about an SKU, including the count available, identifiers, and a list of overlapping SKUs that share the same inventory pool.
Trait Implementations
sourceimpl Clone for FeatureSku
impl Clone for FeatureSku
sourcefn clone(&self) -> FeatureSku
fn clone(&self) -> FeatureSku
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 FeatureSku
impl Debug for FeatureSku
sourceimpl Default for FeatureSku
impl Default for FeatureSku
sourcefn default() -> FeatureSku
fn default() -> FeatureSku
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for FeatureSku
impl<'de> Deserialize<'de> for FeatureSku
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<FeatureSku> for FeatureSku
impl PartialEq<FeatureSku> for FeatureSku
sourcefn eq(&self, other: &FeatureSku) -> bool
fn eq(&self, other: &FeatureSku) -> bool
sourceimpl Serialize for FeatureSku
impl Serialize for FeatureSku
impl StructuralPartialEq for FeatureSku
Auto Trait Implementations
impl RefUnwindSafe for FeatureSku
impl Send for FeatureSku
impl Sync for FeatureSku
impl Unpin for FeatureSku
impl UnwindSafe for FeatureSku
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