pub struct ScheduledTransactionSummary {Show 13 fields
pub id: Uuid,
pub date_first: NaiveDate,
pub date_next: NaiveDate,
pub frequency: Frequency,
pub amount: i64,
pub memo: Option<String>,
pub flag_color: Option<FlagColor>,
pub flag_name: Option<String>,
pub account_id: Uuid,
pub payee_id: Option<Uuid>,
pub category_id: Option<Uuid>,
pub transfer_account_id: Option<Uuid>,
pub deleted: bool,
}Expand description
A scheduled transaction as returned in the plan export (PlanDetails.scheduled_transactions).
A reduced form of ScheduledTransaction — no account_name, payee_name, category_name,
or subtransactions. Amounts are in milliunits (divide by 1000 for display).
Fields§
§id: Uuid§date_first: NaiveDate§date_next: NaiveDate§frequency: Frequency§amount: i64§memo: Option<String>§flag_color: Option<FlagColor>§flag_name: Option<String>§account_id: Uuid§payee_id: Option<Uuid>§category_id: Option<Uuid>§transfer_account_id: Option<Uuid>§deleted: boolTrait Implementations§
Source§impl Clone for ScheduledTransactionSummary
impl Clone for ScheduledTransactionSummary
Source§fn clone(&self) -> ScheduledTransactionSummary
fn clone(&self) -> ScheduledTransactionSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScheduledTransactionSummary
impl Debug for ScheduledTransactionSummary
Source§impl<'de> Deserialize<'de> for ScheduledTransactionSummary
impl<'de> Deserialize<'de> for ScheduledTransactionSummary
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
impl StructuralPartialEq for ScheduledTransactionSummary
Auto Trait Implementations§
impl Freeze for ScheduledTransactionSummary
impl RefUnwindSafe for ScheduledTransactionSummary
impl Send for ScheduledTransactionSummary
impl Sync for ScheduledTransactionSummary
impl Unpin for ScheduledTransactionSummary
impl UnsafeUnpin for ScheduledTransactionSummary
impl UnwindSafe for ScheduledTransactionSummary
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