pub enum LogisticsExceptionKind {
CarrierDelay,
WeatherDelay,
AddressIssue,
LostPackage,
DamagedPackage,
CustomerUnavailable,
}Variants§
Trait Implementations§
Source§impl Clone for LogisticsExceptionKind
impl Clone for LogisticsExceptionKind
Source§fn clone(&self) -> LogisticsExceptionKind
fn clone(&self) -> LogisticsExceptionKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LogisticsExceptionKind
impl Debug for LogisticsExceptionKind
Source§impl PartialEq for LogisticsExceptionKind
impl PartialEq for LogisticsExceptionKind
Source§fn eq(&self, other: &LogisticsExceptionKind) -> bool
fn eq(&self, other: &LogisticsExceptionKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LogisticsExceptionKind
impl Eq for LogisticsExceptionKind
impl StructuralPartialEq for LogisticsExceptionKind
Auto Trait Implementations§
impl Freeze for LogisticsExceptionKind
impl RefUnwindSafe for LogisticsExceptionKind
impl Send for LogisticsExceptionKind
impl Sync for LogisticsExceptionKind
impl Unpin for LogisticsExceptionKind
impl UnsafeUnpin for LogisticsExceptionKind
impl UnwindSafe for LogisticsExceptionKind
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