Struct amazon_sp_services::models::associated_item::AssociatedItem
source · [−]pub struct AssociatedItem {
pub asin: Option<String>,
pub title: Option<String>,
pub quantity: Option<i32>,
pub order_id: Option<String>,
pub item_status: Option<ItemStatus>,
pub brand_name: Option<String>,
pub item_delivery: Option<Box<ItemDelivery>>,
}Expand description
AssociatedItem : Information about an item associated with the service job.
Fields
asin: Option<String>The Amazon Standard Identification Number (ASIN) of the item.
title: Option<String>The title of the item.
quantity: Option<i32>The total number of items included in the order.
order_id: Option<String>The Amazon-defined identifier for an order placed by the buyer, in 3-7-7 format.
item_status: Option<ItemStatus>The status of the item.
brand_name: Option<String>The brand name of the item.
item_delivery: Option<Box<ItemDelivery>>Implementations
sourceimpl AssociatedItem
impl AssociatedItem
sourcepub fn new() -> AssociatedItem
pub fn new() -> AssociatedItem
Information about an item associated with the service job.
Trait Implementations
sourceimpl Clone for AssociatedItem
impl Clone for AssociatedItem
sourcefn clone(&self) -> AssociatedItem
fn clone(&self) -> AssociatedItem
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 AssociatedItem
impl Debug for AssociatedItem
sourceimpl Default for AssociatedItem
impl Default for AssociatedItem
sourcefn default() -> AssociatedItem
fn default() -> AssociatedItem
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for AssociatedItem
impl<'de> Deserialize<'de> for AssociatedItem
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<AssociatedItem> for AssociatedItem
impl PartialEq<AssociatedItem> for AssociatedItem
sourcefn eq(&self, other: &AssociatedItem) -> bool
fn eq(&self, other: &AssociatedItem) -> bool
sourceimpl Serialize for AssociatedItem
impl Serialize for AssociatedItem
impl StructuralPartialEq for AssociatedItem
Auto Trait Implementations
impl RefUnwindSafe for AssociatedItem
impl Send for AssociatedItem
impl Sync for AssociatedItem
impl Unpin for AssociatedItem
impl UnwindSafe for AssociatedItem
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