Struct amazon_sp_orders::models::order_items_list::OrderItemsList
source · [−]pub struct OrderItemsList {
pub order_items: Vec<OrderItem>,
pub next_token: Option<String>,
pub amazon_order_id: String,
}Expand description
OrderItemsList : The order items list along with the order ID.
Fields
order_items: Vec<OrderItem>A list of order items.
next_token: Option<String>When present and not empty, pass this string token in the next request to return the next response page.
amazon_order_id: StringAn Amazon-defined order identifier, in 3-7-7 format.
Implementations
sourceimpl OrderItemsList
impl OrderItemsList
Trait Implementations
sourceimpl Clone for OrderItemsList
impl Clone for OrderItemsList
sourcefn clone(&self) -> OrderItemsList
fn clone(&self) -> OrderItemsList
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 OrderItemsList
impl Debug for OrderItemsList
sourceimpl Default for OrderItemsList
impl Default for OrderItemsList
sourcefn default() -> OrderItemsList
fn default() -> OrderItemsList
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for OrderItemsList
impl<'de> Deserialize<'de> for OrderItemsList
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<OrderItemsList> for OrderItemsList
impl PartialEq<OrderItemsList> for OrderItemsList
sourcefn eq(&self, other: &OrderItemsList) -> bool
fn eq(&self, other: &OrderItemsList) -> bool
sourceimpl Serialize for OrderItemsList
impl Serialize for OrderItemsList
impl StructuralPartialEq for OrderItemsList
Auto Trait Implementations
impl RefUnwindSafe for OrderItemsList
impl Send for OrderItemsList
impl Sync for OrderItemsList
impl Unpin for OrderItemsList
impl UnwindSafe for OrderItemsList
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