pub struct DHLPackageNotFoundInfo {
pub no_data_available: bool,
pub not_a_dhl_package: bool,
}
Expand description
Information why a parcel tracking code may not have been found. This is only set when no tracking information was found (yet?).
Fields§
§no_data_available: bool
If true
, no data is available for this tracking code.
not_a_dhl_package: bool
If true
, this is probably not a DHL tracking code.
Trait Implementations§
Source§impl Debug for DHLPackageNotFoundInfo
impl Debug for DHLPackageNotFoundInfo
Source§impl<'de> Deserialize<'de> for DHLPackageNotFoundInfo
impl<'de> Deserialize<'de> for DHLPackageNotFoundInfo
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 DHLPackageNotFoundInfo
impl RefUnwindSafe for DHLPackageNotFoundInfo
impl Send for DHLPackageNotFoundInfo
impl Sync for DHLPackageNotFoundInfo
impl Unpin for DHLPackageNotFoundInfo
impl UnwindSafe for DHLPackageNotFoundInfo
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