pub enum TreasuryTransactionEntryFlowType {
CreditReversal,
DebitReversal,
InboundTransfer,
IssuingAuthorization,
Other,
OutboundPayment,
OutboundTransfer,
ReceivedCredit,
ReceivedDebit,
}
Expand description
Type of the flow associated with the TransactionEntry.
Variants§
CreditReversal
DebitReversal
InboundTransfer
IssuingAuthorization
Other
OutboundPayment
OutboundTransfer
ReceivedCredit
ReceivedDebit
Implementations§
Trait Implementations§
Source§impl Clone for TreasuryTransactionEntryFlowType
impl Clone for TreasuryTransactionEntryFlowType
Source§fn clone(&self) -> TreasuryTransactionEntryFlowType
fn clone(&self) -> TreasuryTransactionEntryFlowType
Returns a copy 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 FromValueOpt for TreasuryTransactionEntryFlowType
impl FromValueOpt for TreasuryTransactionEntryFlowType
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for TreasuryTransactionEntryFlowType
impl PartialEq for TreasuryTransactionEntryFlowType
Source§fn eq(&self, other: &TreasuryTransactionEntryFlowType) -> bool
fn eq(&self, other: &TreasuryTransactionEntryFlowType) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for TreasuryTransactionEntryFlowType
impl Eq for TreasuryTransactionEntryFlowType
impl StructuralPartialEq for TreasuryTransactionEntryFlowType
Auto Trait Implementations§
impl Freeze for TreasuryTransactionEntryFlowType
impl RefUnwindSafe for TreasuryTransactionEntryFlowType
impl Send for TreasuryTransactionEntryFlowType
impl Sync for TreasuryTransactionEntryFlowType
impl Unpin for TreasuryTransactionEntryFlowType
impl UnwindSafe for TreasuryTransactionEntryFlowType
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