Struct amazon_sp_fulfillment_outbound::models::get_feature_inventory_result::GetFeatureInventoryResult
source · [−]pub struct GetFeatureInventoryResult {
pub marketplace_id: String,
pub feature_name: String,
pub next_token: Option<String>,
pub feature_skus: Option<Vec<FeatureSku>>,
}Expand description
GetFeatureInventoryResult : The payload for the getEligibileInventory operation.
Fields
marketplace_id: StringThe requested marketplace.
feature_name: StringThe name of the feature.
next_token: Option<String>When present and not empty, pass this string token in the next request to return the next response page.
feature_skus: Option<Vec<FeatureSku>>An array of SKUs eligible for this feature and the quantity available.
Implementations
sourceimpl GetFeatureInventoryResult
impl GetFeatureInventoryResult
sourcepub fn new(
marketplace_id: String,
feature_name: String
) -> GetFeatureInventoryResult
pub fn new(
marketplace_id: String,
feature_name: String
) -> GetFeatureInventoryResult
The payload for the getEligibileInventory operation.
Trait Implementations
sourceimpl Clone for GetFeatureInventoryResult
impl Clone for GetFeatureInventoryResult
sourcefn clone(&self) -> GetFeatureInventoryResult
fn clone(&self) -> GetFeatureInventoryResult
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 GetFeatureInventoryResult
impl Debug for GetFeatureInventoryResult
sourceimpl Default for GetFeatureInventoryResult
impl Default for GetFeatureInventoryResult
sourcefn default() -> GetFeatureInventoryResult
fn default() -> GetFeatureInventoryResult
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for GetFeatureInventoryResult
impl<'de> Deserialize<'de> for GetFeatureInventoryResult
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<GetFeatureInventoryResult> for GetFeatureInventoryResult
impl PartialEq<GetFeatureInventoryResult> for GetFeatureInventoryResult
sourcefn eq(&self, other: &GetFeatureInventoryResult) -> bool
fn eq(&self, other: &GetFeatureInventoryResult) -> bool
sourceimpl Serialize for GetFeatureInventoryResult
impl Serialize for GetFeatureInventoryResult
impl StructuralPartialEq for GetFeatureInventoryResult
Auto Trait Implementations
impl RefUnwindSafe for GetFeatureInventoryResult
impl Send for GetFeatureInventoryResult
impl Sync for GetFeatureInventoryResult
impl Unpin for GetFeatureInventoryResult
impl UnwindSafe for GetFeatureInventoryResult
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