pub struct ReturnShipment {
pub creation_date: Option<String>,
pub return_method_type: Option<String>,
pub shipment_id: Option<String>,
pub shipment_tracking_infos: Option<Vec<ShipmentTrackingInfo>>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§creation_date: Option<String>no description provided
return_method_type: Option<String>no description provided
shipment_id: Option<String>no description provided
shipment_tracking_infos: Option<Vec<ShipmentTrackingInfo>>no description provided
Trait Implementations§
Source§impl Clone for ReturnShipment
impl Clone for ReturnShipment
Source§fn clone(&self) -> ReturnShipment
fn clone(&self) -> ReturnShipment
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 ReturnShipment
impl Debug for ReturnShipment
Source§impl Default for ReturnShipment
impl Default for ReturnShipment
Source§fn default() -> ReturnShipment
fn default() -> ReturnShipment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReturnShipment
impl<'de> Deserialize<'de> for ReturnShipment
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 Serialize for ReturnShipment
impl Serialize for ReturnShipment
impl Part for ReturnShipment
Auto Trait Implementations§
impl Freeze for ReturnShipment
impl RefUnwindSafe for ReturnShipment
impl Send for ReturnShipment
impl Sync for ReturnShipment
impl Unpin for ReturnShipment
impl UnwindSafe for ReturnShipment
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