pub enum MatchStatus {
Unmatched,
AutoMatched,
ManuallyMatched,
BankCharge,
Interest,
}Expand description
Match status for a bank statement line.
Variants§
Unmatched
Not yet matched
AutoMatched
Auto-matched to a payment/receipt
ManuallyMatched
Manually matched
BankCharge
Bank charge (no matching payment expected)
Interest
Interest (no matching payment expected)
Trait Implementations§
Source§impl Clone for MatchStatus
impl Clone for MatchStatus
Source§fn clone(&self) -> MatchStatus
fn clone(&self) -> MatchStatus
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 MatchStatus
impl Debug for MatchStatus
Source§impl Default for MatchStatus
impl Default for MatchStatus
Source§fn default() -> MatchStatus
fn default() -> MatchStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MatchStatus
impl<'de> Deserialize<'de> for MatchStatus
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 Hash for MatchStatus
impl Hash for MatchStatus
Source§impl PartialEq for MatchStatus
impl PartialEq for MatchStatus
Source§impl Serialize for MatchStatus
impl Serialize for MatchStatus
impl Copy for MatchStatus
impl Eq for MatchStatus
impl StructuralPartialEq for MatchStatus
Auto Trait Implementations§
impl Freeze for MatchStatus
impl RefUnwindSafe for MatchStatus
impl Send for MatchStatus
impl Sync for MatchStatus
impl Unpin for MatchStatus
impl UnwindSafe for MatchStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.