pub enum CurrentShipmentStatus {
Created,
TransportationRequested,
CarrierAssigned,
Shipped,
}Expand description
Indicates the current shipment status.
Variants§
Trait Implementations§
Source§impl Clone for CurrentShipmentStatus
impl Clone for CurrentShipmentStatus
Source§fn clone(&self) -> CurrentShipmentStatus
fn clone(&self) -> CurrentShipmentStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CurrentShipmentStatus
impl Debug for CurrentShipmentStatus
Source§impl Default for CurrentShipmentStatus
impl Default for CurrentShipmentStatus
Source§fn default() -> CurrentShipmentStatus
fn default() -> CurrentShipmentStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CurrentShipmentStatus
impl<'de> Deserialize<'de> for CurrentShipmentStatus
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
Source§impl Hash for CurrentShipmentStatus
impl Hash for CurrentShipmentStatus
Source§impl Ord for CurrentShipmentStatus
impl Ord for CurrentShipmentStatus
Source§fn cmp(&self, other: &CurrentShipmentStatus) -> Ordering
fn cmp(&self, other: &CurrentShipmentStatus) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CurrentShipmentStatus
impl PartialEq for CurrentShipmentStatus
Source§impl PartialOrd for CurrentShipmentStatus
impl PartialOrd for CurrentShipmentStatus
Source§impl Serialize for CurrentShipmentStatus
impl Serialize for CurrentShipmentStatus
impl Copy for CurrentShipmentStatus
impl Eq for CurrentShipmentStatus
impl StructuralPartialEq for CurrentShipmentStatus
Auto Trait Implementations§
impl Freeze for CurrentShipmentStatus
impl RefUnwindSafe for CurrentShipmentStatus
impl Send for CurrentShipmentStatus
impl Sync for CurrentShipmentStatus
impl Unpin for CurrentShipmentStatus
impl UnsafeUnpin for CurrentShipmentStatus
impl UnwindSafe for CurrentShipmentStatus
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