Struct amazon_sp_fulfillment_outbound::models::get_feature_sku_result::GetFeatureSkuResult
source · [−]pub struct GetFeatureSkuResult {
pub marketplace_id: String,
pub feature_name: String,
pub is_eligible: bool,
pub ineligible_reasons: Option<Vec<String>>,
pub sku_info: Option<Box<FeatureSku>>,
}Expand description
GetFeatureSkuResult : The payload for the getFeatureSKU operation.
Fields
marketplace_id: StringThe requested marketplace.
feature_name: StringThe name of the feature.
is_eligible: boolWhen true, the seller SKU is eligible for the requested feature.
ineligible_reasons: Option<Vec<String>>A list of one or more reasons that the seller SKU is ineligibile for the feature. Possible values: * MERCHANT_NOT_ENROLLED - The merchant isn’t enrolled for the feature. * SKU_NOT_ELIGIBLE - The SKU doesn’t reside in a warehouse that supports the feature. * INVALID_SKU - There is an issue with the SKU provided.
sku_info: Option<Box<FeatureSku>>Implementations
Trait Implementations
sourceimpl Clone for GetFeatureSkuResult
impl Clone for GetFeatureSkuResult
sourcefn clone(&self) -> GetFeatureSkuResult
fn clone(&self) -> GetFeatureSkuResult
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 GetFeatureSkuResult
impl Debug for GetFeatureSkuResult
sourceimpl Default for GetFeatureSkuResult
impl Default for GetFeatureSkuResult
sourcefn default() -> GetFeatureSkuResult
fn default() -> GetFeatureSkuResult
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for GetFeatureSkuResult
impl<'de> Deserialize<'de> for GetFeatureSkuResult
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<GetFeatureSkuResult> for GetFeatureSkuResult
impl PartialEq<GetFeatureSkuResult> for GetFeatureSkuResult
sourcefn eq(&self, other: &GetFeatureSkuResult) -> bool
fn eq(&self, other: &GetFeatureSkuResult) -> bool
sourceimpl Serialize for GetFeatureSkuResult
impl Serialize for GetFeatureSkuResult
impl StructuralPartialEq for GetFeatureSkuResult
Auto Trait Implementations
impl RefUnwindSafe for GetFeatureSkuResult
impl Send for GetFeatureSkuResult
impl Sync for GetFeatureSkuResult
impl Unpin for GetFeatureSkuResult
impl UnwindSafe for GetFeatureSkuResult
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