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§
Source§impl AssociatedItem
impl AssociatedItem
Sourcepub fn new() -> AssociatedItem
pub fn new() -> AssociatedItem
Information about an item associated with the service job.
Trait Implementations§
Source§impl Clone for AssociatedItem
impl Clone for AssociatedItem
Source§fn clone(&self) -> AssociatedItem
fn clone(&self) -> AssociatedItem
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 AssociatedItem
impl Debug for AssociatedItem
Source§impl Default for AssociatedItem
impl Default for AssociatedItem
Source§fn default() -> AssociatedItem
fn default() -> AssociatedItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssociatedItem
impl<'de> Deserialize<'de> for AssociatedItem
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
Source§impl PartialEq for AssociatedItem
impl PartialEq for AssociatedItem
Source§impl Serialize for AssociatedItem
impl Serialize for AssociatedItem
impl StructuralPartialEq for AssociatedItem
Auto Trait Implementations§
impl Freeze for AssociatedItem
impl RefUnwindSafe for AssociatedItem
impl Send for AssociatedItem
impl Sync for AssociatedItem
impl Unpin for AssociatedItem
impl UnwindSafe for AssociatedItem
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