pub struct SkuInboundGuidance {
pub seller_sku: String,
pub ASIN: String,
pub inbound_guidance: InboundGuidance,
pub guidance_reason_list: Option<Vec<GuidanceReason>>,
}Expand description
SkuInboundGuidance : Reasons why a given seller SKU is not recommended for shipment to Amazon’s fulfillment network.
Fields
seller_sku: StringThe seller SKU of the item.
ASIN: StringThe Amazon Standard Identification Number (ASIN) of the item.
inbound_guidance: InboundGuidanceguidance_reason_list: Option<Vec<GuidanceReason>>A list of inbound guidance reason information.
Implementations
sourceimpl SkuInboundGuidance
impl SkuInboundGuidance
sourcepub fn new(
seller_sku: String,
ASIN: String,
inbound_guidance: InboundGuidance
) -> SkuInboundGuidance
pub fn new(
seller_sku: String,
ASIN: String,
inbound_guidance: InboundGuidance
) -> SkuInboundGuidance
Reasons why a given seller SKU is not recommended for shipment to Amazon’s fulfillment network.
Trait Implementations
sourceimpl Clone for SkuInboundGuidance
impl Clone for SkuInboundGuidance
sourcefn clone(&self) -> SkuInboundGuidance
fn clone(&self) -> SkuInboundGuidance
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 SkuInboundGuidance
impl Debug for SkuInboundGuidance
sourceimpl Default for SkuInboundGuidance
impl Default for SkuInboundGuidance
sourcefn default() -> SkuInboundGuidance
fn default() -> SkuInboundGuidance
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for SkuInboundGuidance
impl<'de> Deserialize<'de> for SkuInboundGuidance
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<SkuInboundGuidance> for SkuInboundGuidance
impl PartialEq<SkuInboundGuidance> for SkuInboundGuidance
sourcefn eq(&self, other: &SkuInboundGuidance) -> bool
fn eq(&self, other: &SkuInboundGuidance) -> bool
sourceimpl Serialize for SkuInboundGuidance
impl Serialize for SkuInboundGuidance
impl StructuralPartialEq for SkuInboundGuidance
Auto Trait Implementations
impl RefUnwindSafe for SkuInboundGuidance
impl Send for SkuInboundGuidance
impl Sync for SkuInboundGuidance
impl Unpin for SkuInboundGuidance
impl UnwindSafe for SkuInboundGuidance
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