pub enum CashAccountTransactionType {
OpeningBalance,
Deposit,
Withdrawal,
InterestPayment,
Fee,
FeeReimbursement,
}Variants§
Trait Implementations§
Source§impl Clone for CashAccountTransactionType
impl Clone for CashAccountTransactionType
Source§fn clone(&self) -> CashAccountTransactionType
fn clone(&self) -> CashAccountTransactionType
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 CashAccountTransactionType
impl Debug for CashAccountTransactionType
Source§impl<'de> Deserialize<'de> for CashAccountTransactionType
impl<'de> Deserialize<'de> for CashAccountTransactionType
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
impl Copy for CashAccountTransactionType
impl Eq for CashAccountTransactionType
impl StructuralPartialEq for CashAccountTransactionType
Auto Trait Implementations§
impl Freeze for CashAccountTransactionType
impl RefUnwindSafe for CashAccountTransactionType
impl Send for CashAccountTransactionType
impl Sync for CashAccountTransactionType
impl Unpin for CashAccountTransactionType
impl UnsafeUnpin for CashAccountTransactionType
impl UnwindSafe for CashAccountTransactionType
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