[][src]Struct dhl_api::DHLPackageNotFoundInfo

pub struct DHLPackageNotFoundInfo {
    pub no_data_available: bool,
    pub not_a_dhl_package: bool,
}

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

impl Debug for DHLPackageNotFoundInfo[src]

impl<'de> Deserialize<'de> for DHLPackageNotFoundInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.