pub enum DebitMemoReason {
Return,
Damaged,
WrongItem,
PriceOvercharge,
QuantityShortage,
QualityIssue,
LateDeliveryPenalty,
DuplicateInvoice,
ServiceNotPerformed,
ContractAdjustment,
Other,
}Expand description
Reason code for debit memo.
Variants§
Return
Goods returned.
Damaged
Damaged goods received.
WrongItem
Wrong item received.
PriceOvercharge
Price overcharge.
QuantityShortage
Quantity shortage.
QualityIssue
Quality issue.
LateDeliveryPenalty
Late delivery penalty.
DuplicateInvoice
Duplicate invoice.
ServiceNotPerformed
Service not performed.
ContractAdjustment
Contract adjustment.
Other
Other.
Trait Implementations§
Source§impl Clone for DebitMemoReason
impl Clone for DebitMemoReason
Source§fn clone(&self) -> DebitMemoReason
fn clone(&self) -> DebitMemoReason
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 DebitMemoReason
impl Debug for DebitMemoReason
Source§impl Default for DebitMemoReason
impl Default for DebitMemoReason
Source§fn default() -> DebitMemoReason
fn default() -> DebitMemoReason
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DebitMemoReason
impl<'de> Deserialize<'de> for DebitMemoReason
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 PartialEq for DebitMemoReason
impl PartialEq for DebitMemoReason
Source§impl Serialize for DebitMemoReason
impl Serialize for DebitMemoReason
impl Copy for DebitMemoReason
impl Eq for DebitMemoReason
impl StructuralPartialEq for DebitMemoReason
Auto Trait Implementations§
impl Freeze for DebitMemoReason
impl RefUnwindSafe for DebitMemoReason
impl Send for DebitMemoReason
impl Sync for DebitMemoReason
impl Unpin for DebitMemoReason
impl UnwindSafe for DebitMemoReason
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.