pub struct GetPrepInstructionsResult {
pub sku_prep_instructions_list: Option<Vec<SkuPrepInstructions>>,
pub invalid_sku_list: Option<Vec<InvalidSku>>,
pub asin_prep_instructions_list: Option<Vec<AsinPrepInstructions>>,
pub invalid_asin_list: Option<Vec<InvalidAsin>>,
}Expand description
GetPrepInstructionsResult : Result for the get prep instructions operation
Fields§
§sku_prep_instructions_list: Option<Vec<SkuPrepInstructions>>A list of SKU labeling requirements and item preparation instructions.
invalid_sku_list: Option<Vec<InvalidSku>>A list of invalid SKU values and the reason they are invalid.
asin_prep_instructions_list: Option<Vec<AsinPrepInstructions>>A list of item preparation instructions.
invalid_asin_list: Option<Vec<InvalidAsin>>A list of invalid ASIN values and the reasons they are invalid.
Implementations§
Source§impl GetPrepInstructionsResult
impl GetPrepInstructionsResult
Sourcepub fn new() -> GetPrepInstructionsResult
pub fn new() -> GetPrepInstructionsResult
Result for the get prep instructions operation
Trait Implementations§
Source§impl Clone for GetPrepInstructionsResult
impl Clone for GetPrepInstructionsResult
Source§fn clone(&self) -> GetPrepInstructionsResult
fn clone(&self) -> GetPrepInstructionsResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetPrepInstructionsResult
impl Debug for GetPrepInstructionsResult
Source§impl Default for GetPrepInstructionsResult
impl Default for GetPrepInstructionsResult
Source§fn default() -> GetPrepInstructionsResult
fn default() -> GetPrepInstructionsResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetPrepInstructionsResult
impl<'de> Deserialize<'de> for GetPrepInstructionsResult
Source§fn 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
impl StructuralPartialEq for GetPrepInstructionsResult
Auto Trait Implementations§
impl Freeze for GetPrepInstructionsResult
impl RefUnwindSafe for GetPrepInstructionsResult
impl Send for GetPrepInstructionsResult
impl Sync for GetPrepInstructionsResult
impl Unpin for GetPrepInstructionsResult
impl UnwindSafe for GetPrepInstructionsResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more