pub enum HandlingInstructions {
Oversized,
Fragile,
Food,
HandleWithCare,
}Expand description
Identification of the instructions on how specified item/carton/pallet should be handled.
Variants§
Trait Implementations§
Source§impl Clone for HandlingInstructions
impl Clone for HandlingInstructions
Source§fn clone(&self) -> HandlingInstructions
fn clone(&self) -> HandlingInstructions
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 HandlingInstructions
impl Debug for HandlingInstructions
Source§impl Default for HandlingInstructions
impl Default for HandlingInstructions
Source§fn default() -> HandlingInstructions
fn default() -> HandlingInstructions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HandlingInstructions
impl<'de> Deserialize<'de> for HandlingInstructions
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 HandlingInstructions
impl Hash for HandlingInstructions
Source§impl Ord for HandlingInstructions
impl Ord for HandlingInstructions
Source§fn cmp(&self, other: &HandlingInstructions) -> Ordering
fn cmp(&self, other: &HandlingInstructions) -> 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 HandlingInstructions
impl PartialEq for HandlingInstructions
Source§impl PartialOrd for HandlingInstructions
impl PartialOrd for HandlingInstructions
Source§impl Serialize for HandlingInstructions
impl Serialize for HandlingInstructions
impl Copy for HandlingInstructions
impl Eq for HandlingInstructions
impl StructuralPartialEq for HandlingInstructions
Auto Trait Implementations§
impl Freeze for HandlingInstructions
impl RefUnwindSafe for HandlingInstructions
impl Send for HandlingInstructions
impl Sync for HandlingInstructions
impl Unpin for HandlingInstructions
impl UnwindSafe for HandlingInstructions
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