pub enum TreasuryTransactionFlowType {
CreditReversal,
DebitReversal,
InboundTransfer,
IssuingAuthorization,
Other,
OutboundPayment,
OutboundTransfer,
ReceivedCredit,
ReceivedDebit,
}
Expand description
Type of the flow that created the Transaction.
Variants§
CreditReversal
DebitReversal
InboundTransfer
IssuingAuthorization
Other
OutboundPayment
OutboundTransfer
ReceivedCredit
ReceivedDebit
Implementations§
Trait Implementations§
Source§impl Clone for TreasuryTransactionFlowType
impl Clone for TreasuryTransactionFlowType
Source§fn clone(&self) -> TreasuryTransactionFlowType
fn clone(&self) -> TreasuryTransactionFlowType
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 Debug for TreasuryTransactionFlowType
impl Debug for TreasuryTransactionFlowType
Source§impl FromValueOpt for TreasuryTransactionFlowType
impl FromValueOpt for TreasuryTransactionFlowType
fn from_value(v: Value) -> Option<Self>
impl Copy for TreasuryTransactionFlowType
impl Eq for TreasuryTransactionFlowType
impl StructuralPartialEq for TreasuryTransactionFlowType
Auto Trait Implementations§
impl Freeze for TreasuryTransactionFlowType
impl RefUnwindSafe for TreasuryTransactionFlowType
impl Send for TreasuryTransactionFlowType
impl Sync for TreasuryTransactionFlowType
impl Unpin for TreasuryTransactionFlowType
impl UnwindSafe for TreasuryTransactionFlowType
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