pub enum ShortPaymentDisposition {
Pending,
UnderInvestigation,
CreditMemoIssued,
WrittenOff,
Rebilled,
Accepted,
DisputeRejected,
}Expand description
Disposition of a short payment.
Variants§
Pending
Pending review.
UnderInvestigation
Under investigation.
CreditMemoIssued
Credit memo issued to customer.
WrittenOff
Amount written off.
Rebilled
Customer re-billed for amount.
Accepted
Short amount accepted (customer was correct).
DisputeRejected
Dispute rejected, pursuing collection.
Trait Implementations§
Source§impl Clone for ShortPaymentDisposition
impl Clone for ShortPaymentDisposition
Source§fn clone(&self) -> ShortPaymentDisposition
fn clone(&self) -> ShortPaymentDisposition
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 ShortPaymentDisposition
impl Debug for ShortPaymentDisposition
Source§impl Default for ShortPaymentDisposition
impl Default for ShortPaymentDisposition
Source§fn default() -> ShortPaymentDisposition
fn default() -> ShortPaymentDisposition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ShortPaymentDisposition
impl<'de> Deserialize<'de> for ShortPaymentDisposition
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 ShortPaymentDisposition
impl PartialEq for ShortPaymentDisposition
Source§impl Serialize for ShortPaymentDisposition
impl Serialize for ShortPaymentDisposition
impl Copy for ShortPaymentDisposition
impl Eq for ShortPaymentDisposition
impl StructuralPartialEq for ShortPaymentDisposition
Auto Trait Implementations§
impl Freeze for ShortPaymentDisposition
impl RefUnwindSafe for ShortPaymentDisposition
impl Send for ShortPaymentDisposition
impl Sync for ShortPaymentDisposition
impl Unpin for ShortPaymentDisposition
impl UnwindSafe for ShortPaymentDisposition
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.