pub enum LedgerEntryIntent {
FlexRepayment,
FlexTransferMoney,
SomethingElse(String),
}Variants§
FlexRepayment
Money is transferred to the Flex account as part of a repayment
FlexTransferMoney
Money is transferred from the Flex account to the regular bank account
SomethingElse(String)
The value didn’t match anything currently parsed.
Trait Implementations§
Source§impl Clone for LedgerEntryIntent
impl Clone for LedgerEntryIntent
Source§fn clone(&self) -> LedgerEntryIntent
fn clone(&self) -> LedgerEntryIntent
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 LedgerEntryIntent
impl Debug for LedgerEntryIntent
Source§impl<'de> Deserialize<'de> for LedgerEntryIntent
impl<'de> Deserialize<'de> for LedgerEntryIntent
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 HasExtraData for LedgerEntryIntent
Available on crate feature decode_everything only.
impl HasExtraData for LedgerEntryIntent
Available on crate feature
decode_everything only.Source§fn has_extra_data(&self) -> bool
fn has_extra_data(&self) -> bool
Recursively check if any extra data is present on this object or
any of it’s children.
Source§impl PartialEq for LedgerEntryIntent
impl PartialEq for LedgerEntryIntent
impl StructuralPartialEq for LedgerEntryIntent
Auto Trait Implementations§
impl Freeze for LedgerEntryIntent
impl RefUnwindSafe for LedgerEntryIntent
impl Send for LedgerEntryIntent
impl Sync for LedgerEntryIntent
impl Unpin for LedgerEntryIntent
impl UnwindSafe for LedgerEntryIntent
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