Struct shippo::Parcel[][src]

pub struct Parcel {
Show fields pub object_state: String, pub object_created: Option<DateTime<Utc>>, pub object_updated: Option<DateTime<Utc>>, pub object_id: String, pub object_owner: String, pub length: String, pub width: String, pub height: String, pub distance_unit: String, pub weight: String, pub mass_unit: String, pub metadata: String, pub test: bool,
}

The data type for a parcel. FROM: https://goshippo.com/docs/reference#parcels

Fields

object_state: String

A Parcel will only be valid when all required values have been sent and validated successfully. “VALID”

object_created: Option<DateTime<Utc>>

Date and time of Parcel creation.

object_updated: Option<DateTime<Utc>>

Date and time of last Parcel update. Since you cannot update Parcels after they were created, this time stamp reflects the time when the Parcel was changed by Shippo’s systems for the last time, e.g., during sorting the dimensions given.

object_id: String

Unique identifier of the given Parcel object. This ID is required to create a Shipment object.

object_owner: String

Username of the user who created the Parcel object.

length: String

Length of the Parcel. Up to six digits in front and four digits after the decimal separator are accepted.

width: String

Width of the Parcel. Up to six digits in front and four digits after the decimal separator are accepted.

height: String

Height of the parcel. Up to six digits in front and four digits after the decimal separator are accepted.

distance_unit: String

The unit used for length, width and height. “cm” | “in” | “ft” | “mm” | “m” | “yd”

weight: String

Weight of the parcel. Up to six digits in front and four digits after the decimal separator are accepted.

mass_unit: String

The unit used for weight. “g” | “oz” | “lb” | “kg”

metadata: String

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

test: bool

Indicates whether the object has been created in test mode.

Trait Implementations

impl Clone for Parcel[src]

fn clone(&self) -> Parcel[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Parcel[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for Parcel[src]

fn default() -> Parcel[src]

Returns the “default value” for a type. Read more

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

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
    __D: Deserializer<'de>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for Parcel[src]

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
    __S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

impl RefUnwindSafe for Parcel

impl Send for Parcel

impl Sync for Parcel

impl Unpin for Parcel

impl UnwindSafe for Parcel

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn __clone_box(&self, Private) -> *mut ()[src]

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

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

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