pub struct Transaction {
pub date: NaiveDate,
pub amount: Decimal,
pub payee: Option<String>,
pub transaction_type: String,
pub fitid: Option<String>,
pub status: Option<String>,
pub memo: Option<String>,
}Fields§
§date: NaiveDate§amount: Decimal§payee: Option<String>§transaction_type: String§fitid: Option<String>§status: Option<String>§memo: Option<String>Trait Implementations§
Source§impl Clone for Transaction
impl Clone for Transaction
Source§fn clone(&self) -> Transaction
fn clone(&self) -> Transaction
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 Transaction
impl Debug for Transaction
Source§impl<'de> Deserialize<'de> for Transaction
impl<'de> Deserialize<'de> for Transaction
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 Serialize for Transaction
impl Serialize for Transaction
Source§impl TryFrom<ParsedTransaction> for Transaction
impl TryFrom<ParsedTransaction> for Transaction
Source§type Error = StatementParseError
type Error = StatementParseError
The type returned in the event of a conversion error.
Source§impl TryFrom<QfxTransaction> for Transaction
impl TryFrom<QfxTransaction> for Transaction
Source§type Error = StatementParseError
type Error = StatementParseError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for Transaction
impl RefUnwindSafe for Transaction
impl Send for Transaction
impl Sync for Transaction
impl Unpin for Transaction
impl UnsafeUnpin for Transaction
impl UnwindSafe for Transaction
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