Struct amazon_sp_easy_ship::models::list_handover_slots_request::ListHandoverSlotsRequest
source · [−]pub struct ListHandoverSlotsRequest {
pub marketplace_id: String,
pub amazon_order_id: String,
pub package_dimensions: Box<Dimensions>,
pub package_weight: Box<Weight>,
}Expand description
ListHandoverSlotsRequest : The request schema for the listHandoverSlots operation.
Fields
marketplace_id: StringA string of up to 255 characters.
amazon_order_id: StringAn Amazon-defined order identifier. Identifies the order that the seller wants to deliver using Amazon Easy Ship.
package_dimensions: Box<Dimensions>package_weight: Box<Weight>Implementations
sourceimpl ListHandoverSlotsRequest
impl ListHandoverSlotsRequest
sourcepub fn new(
marketplace_id: String,
amazon_order_id: String,
package_dimensions: Dimensions,
package_weight: Weight
) -> ListHandoverSlotsRequest
pub fn new(
marketplace_id: String,
amazon_order_id: String,
package_dimensions: Dimensions,
package_weight: Weight
) -> ListHandoverSlotsRequest
The request schema for the listHandoverSlots operation.
Trait Implementations
sourceimpl Clone for ListHandoverSlotsRequest
impl Clone for ListHandoverSlotsRequest
sourcefn clone(&self) -> ListHandoverSlotsRequest
fn clone(&self) -> ListHandoverSlotsRequest
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 ListHandoverSlotsRequest
impl Debug for ListHandoverSlotsRequest
sourceimpl Default for ListHandoverSlotsRequest
impl Default for ListHandoverSlotsRequest
sourcefn default() -> ListHandoverSlotsRequest
fn default() -> ListHandoverSlotsRequest
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ListHandoverSlotsRequest
impl<'de> Deserialize<'de> for ListHandoverSlotsRequest
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<ListHandoverSlotsRequest> for ListHandoverSlotsRequest
impl PartialEq<ListHandoverSlotsRequest> for ListHandoverSlotsRequest
sourcefn eq(&self, other: &ListHandoverSlotsRequest) -> bool
fn eq(&self, other: &ListHandoverSlotsRequest) -> bool
sourceimpl Serialize for ListHandoverSlotsRequest
impl Serialize for ListHandoverSlotsRequest
impl StructuralPartialEq for ListHandoverSlotsRequest
Auto Trait Implementations
impl RefUnwindSafe for ListHandoverSlotsRequest
impl Send for ListHandoverSlotsRequest
impl Sync for ListHandoverSlotsRequest
impl Unpin for ListHandoverSlotsRequest
impl UnwindSafe for ListHandoverSlotsRequest
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