#[non_exhaustive]pub enum TreasuryTransactionEntryType {
Show 21 variants
CreditReversal,
CreditReversalPosting,
DebitReversal,
InboundTransfer,
InboundTransferReturn,
IssuingAuthorizationHold,
IssuingAuthorizationRelease,
Other,
OutboundPayment,
OutboundPaymentCancellation,
OutboundPaymentFailure,
OutboundPaymentPosting,
OutboundPaymentReturn,
OutboundTransfer,
OutboundTransferCancellation,
OutboundTransferFailure,
OutboundTransferPosting,
OutboundTransferReturn,
ReceivedCredit,
ReceivedDebit,
Unknown(String),
}
Expand description
The specific money movement that generated the TransactionEntry.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
CreditReversal
CreditReversalPosting
DebitReversal
InboundTransfer
InboundTransferReturn
IssuingAuthorizationHold
IssuingAuthorizationRelease
Other
OutboundPayment
OutboundPaymentCancellation
OutboundPaymentFailure
OutboundPaymentPosting
OutboundPaymentReturn
OutboundTransfer
OutboundTransferCancellation
OutboundTransferFailure
OutboundTransferPosting
OutboundTransferReturn
ReceivedCredit
ReceivedDebit
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for TreasuryTransactionEntryType
impl Clone for TreasuryTransactionEntryType
Source§fn clone(&self) -> TreasuryTransactionEntryType
fn clone(&self) -> TreasuryTransactionEntryType
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 TreasuryTransactionEntryType
impl Debug for TreasuryTransactionEntryType
Source§impl FromValueOpt for TreasuryTransactionEntryType
impl FromValueOpt for TreasuryTransactionEntryType
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for TreasuryTransactionEntryType
impl PartialEq for TreasuryTransactionEntryType
Source§fn eq(&self, other: &TreasuryTransactionEntryType) -> bool
fn eq(&self, other: &TreasuryTransactionEntryType) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for TreasuryTransactionEntryType
impl StructuralPartialEq for TreasuryTransactionEntryType
Auto Trait Implementations§
impl Freeze for TreasuryTransactionEntryType
impl RefUnwindSafe for TreasuryTransactionEntryType
impl Send for TreasuryTransactionEntryType
impl Sync for TreasuryTransactionEntryType
impl Unpin for TreasuryTransactionEntryType
impl UnwindSafe for TreasuryTransactionEntryType
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