pub struct DHLPackageItemHistoryEvent {
pub date: String,
pub status: String,
pub return_shipment: bool,
pub location: Option<String>,
}
Expand description
Parcel history events (where did you come from, where did you go?)
Fields§
§date: String
Date
status: String
Status text
return_shipment: bool
If it was returned (?)
location: Option<String>
Location where this happened
Trait Implementations§
Source§impl Debug for DHLPackageItemHistoryEvent
impl Debug for DHLPackageItemHistoryEvent
Source§impl<'de> Deserialize<'de> for DHLPackageItemHistoryEvent
impl<'de> Deserialize<'de> for DHLPackageItemHistoryEvent
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
Auto Trait Implementations§
impl Freeze for DHLPackageItemHistoryEvent
impl RefUnwindSafe for DHLPackageItemHistoryEvent
impl Send for DHLPackageItemHistoryEvent
impl Sync for DHLPackageItemHistoryEvent
impl Unpin for DHLPackageItemHistoryEvent
impl UnwindSafe for DHLPackageItemHistoryEvent
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