[][src]Struct shippo::TrackingStatus

pub struct TrackingStatus {
    pub carrier: String,
    pub tracking_number: String,
    pub address_from: Address,
    pub address_to: Address,
    pub transaction: String,
    pub eta: Option<DateTime<Utc>>,
    pub original_eta: Option<DateTime<Utc>>,
    pub servicelevel: ServiceLevel,
    pub tracking_status: Status,
    pub tracking_history: Vec<Status>,
    pub metadata: String,
}

The data type for a tracking status. Tracking Status objects are used to track shipments. FROM: https://goshippo.com/docs/reference#tracks

Fields

carrier: String

Name of the carrier of the shipment to track.

tracking_number: String

Tracking number to track.

address_from: Address

The sender address with city, state, zip and country information.

address_to: Address

The recipient address with city, state, zip and country information.

transaction: String

The object_id of the transaction associated with this tracking object. This field is visible only to the object owner of the transaction.

eta: Option<DateTime<Utc>>

The estimated time of arrival according to the carrier, this might be updated by carriers during the life of the shipment.

original_eta: Option<DateTime<Utc>>

The estimated time of arrival according to the carrier at the time the shipment first entered the system.

servicelevel: ServiceLevel

The service level of the shipment as token and full name.

tracking_status: Status

The latest tracking information of this shipment.

tracking_history: Vec<Status>

A list of tracking events, following the same structure as tracking_status. It contains a full history of all tracking statuses, starting with the earlier tracking event first.

metadata: String

A string of up to 100 characters that can be filled with any additional information you want to attach to the object.

Trait Implementations

impl Clone for TrackingStatus[src]

impl Debug for TrackingStatus[src]

impl Default for TrackingStatus[src]

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

impl Serialize for TrackingStatus[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> DynClone for T where
    T: Clone
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.