pub enum ShipmentStructure {
PalletizedAssortmentCase,
LooseAssortmentCase,
PalletOfItems,
PalletizedStandardCase,
LooseStandardCase,
MasterPallet,
MasterCase,
}Expand description
Shipment hierarchical structure.
Variants§
PalletizedAssortmentCase
LooseAssortmentCase
PalletOfItems
PalletizedStandardCase
LooseStandardCase
MasterPallet
MasterCase
Trait Implementations§
Source§impl Clone for ShipmentStructure
impl Clone for ShipmentStructure
Source§fn clone(&self) -> ShipmentStructure
fn clone(&self) -> ShipmentStructure
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 ShipmentStructure
impl Debug for ShipmentStructure
Source§impl Default for ShipmentStructure
impl Default for ShipmentStructure
Source§fn default() -> ShipmentStructure
fn default() -> ShipmentStructure
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ShipmentStructure
impl<'de> Deserialize<'de> for ShipmentStructure
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 ShipmentStructure
impl Hash for ShipmentStructure
Source§impl Ord for ShipmentStructure
impl Ord for ShipmentStructure
Source§fn cmp(&self, other: &ShipmentStructure) -> Ordering
fn cmp(&self, other: &ShipmentStructure) -> 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 ShipmentStructure
impl PartialEq for ShipmentStructure
Source§impl PartialOrd for ShipmentStructure
impl PartialOrd for ShipmentStructure
Source§impl Serialize for ShipmentStructure
impl Serialize for ShipmentStructure
impl Copy for ShipmentStructure
impl Eq for ShipmentStructure
impl StructuralPartialEq for ShipmentStructure
Auto Trait Implementations§
impl Freeze for ShipmentStructure
impl RefUnwindSafe for ShipmentStructure
impl Send for ShipmentStructure
impl Sync for ShipmentStructure
impl Unpin for ShipmentStructure
impl UnwindSafe for ShipmentStructure
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