pub enum DebtTransactionType {
Payment,
Refund,
Fee,
Interest,
Escrow,
BalanceAdjustment,
Credit,
Charge,
}Expand description
If the transaction is a debt/loan account transaction, the type of transaction
Variants§
Trait Implementations§
Source§impl Clone for DebtTransactionType
impl Clone for DebtTransactionType
Source§fn clone(&self) -> DebtTransactionType
fn clone(&self) -> DebtTransactionType
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 DebtTransactionType
impl Debug for DebtTransactionType
Source§impl Default for DebtTransactionType
impl Default for DebtTransactionType
Source§fn default() -> DebtTransactionType
fn default() -> DebtTransactionType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DebtTransactionType
impl<'de> Deserialize<'de> for DebtTransactionType
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 DebtTransactionType
impl Hash for DebtTransactionType
Source§impl Ord for DebtTransactionType
impl Ord for DebtTransactionType
Source§fn cmp(&self, other: &DebtTransactionType) -> Ordering
fn cmp(&self, other: &DebtTransactionType) -> 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 DebtTransactionType
impl PartialEq for DebtTransactionType
Source§impl PartialOrd for DebtTransactionType
impl PartialOrd for DebtTransactionType
Source§impl Serialize for DebtTransactionType
impl Serialize for DebtTransactionType
impl Copy for DebtTransactionType
impl Eq for DebtTransactionType
impl StructuralPartialEq for DebtTransactionType
Auto Trait Implementations§
impl Freeze for DebtTransactionType
impl RefUnwindSafe for DebtTransactionType
impl Send for DebtTransactionType
impl Sync for DebtTransactionType
impl Unpin for DebtTransactionType
impl UnwindSafe for DebtTransactionType
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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.