#[non_exhaustive]pub enum StandardDisposition {
Show 25 variants
Active,
ContainerClosed,
ContainerOpen,
Damaged,
Destroyed,
Dispensed,
Disposed,
Encoded,
Expired,
InProgress,
InTransit,
Inactive,
NoPedigreeMatch,
NonSellable,
NonDisposed,
PartsDamaged,
PedigreeMatch,
Recalled,
ReceivingUnconfirmed,
Reshelved,
Returned,
SellableAccessible,
SellableNotAccessible,
Stolen,
Unknown,
}Expand description
Standard disposition values as defined by GS1 CBV.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Active
active
ContainerClosed
container_closed
ContainerOpen
container_open
Damaged
damaged
Destroyed
destroyed
Dispensed
dispensed
Disposed
disposed
Encoded
encoded
Expired
expired
InProgress
in_progress
InTransit
in_transit
Inactive
inactive
NoPedigreeMatch
no_pedigree_match
NonSellable
non_sellable
NonDisposed
non_disposed
PartsDamaged
parts_damaged
PedigreeMatch
pedigree_match
Recalled
recalled
ReceivingUnconfirmed
receiving_unconfirmed
Reshelved
reshelved
Returned
returned
SellableAccessible
sellable_accessible
SellableNotAccessible
sellable_not_accessible
Stolen
stolen
Unknown
unknown
Trait Implementations§
Source§impl AsRef<str> for StandardDisposition
impl AsRef<str> for StandardDisposition
Source§impl Clone for StandardDisposition
impl Clone for StandardDisposition
Source§fn clone(&self) -> StandardDisposition
fn clone(&self) -> StandardDisposition
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 moreimpl Copy for StandardDisposition
Source§impl Debug for StandardDisposition
impl Debug for StandardDisposition
Source§impl Display for StandardDisposition
impl Display for StandardDisposition
impl Eq for StandardDisposition
Source§impl FromStr for StandardDisposition
impl FromStr for StandardDisposition
Source§impl Hash for StandardDisposition
impl Hash for StandardDisposition
Source§impl PartialEq for StandardDisposition
impl PartialEq for StandardDisposition
Source§fn eq(&self, other: &StandardDisposition) -> bool
fn eq(&self, other: &StandardDisposition) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StandardDisposition
Auto Trait Implementations§
impl Freeze for StandardDisposition
impl RefUnwindSafe for StandardDisposition
impl Send for StandardDisposition
impl Sync for StandardDisposition
impl Unpin for StandardDisposition
impl UnsafeUnpin for StandardDisposition
impl UnwindSafe for StandardDisposition
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.