pub struct BudgetDetail {Show 17 fields
pub id: String,
pub name: String,
pub last_modified_on: Option<String>,
pub first_month: Option<String>,
pub last_month: Option<String>,
pub date_format: Option<DateFormat>,
pub currency_format: Option<CurrencyFormat>,
pub accounts: Option<Vec<Account>>,
pub payees: Option<Vec<Payee>>,
pub payee_locations: Option<Vec<PayeeLocation>>,
pub category_groups: Option<Vec<CategoryGroup>>,
pub categories: Option<Vec<Category>>,
pub months: Option<Vec<MonthDetail>>,
pub transactions: Option<Vec<TransactionSummary>>,
pub subtransactions: Option<Vec<SubTransaction>>,
pub scheduled_transactions: Option<Vec<ScheduledTransactionSummary>>,
pub scheduled_subtransactions: Option<Vec<ScheduledSubTransaction>>,
}Fields§
§id: String§name: String§last_modified_on: Option<String>The last time any changes were made to the budget from either a web or mobile client
first_month: Option<String>The earliest budget month
last_month: Option<String>The latest budget month
date_format: Option<DateFormat>§currency_format: Option<CurrencyFormat>§accounts: Option<Vec<Account>>§payees: Option<Vec<Payee>>§payee_locations: Option<Vec<PayeeLocation>>§category_groups: Option<Vec<CategoryGroup>>§categories: Option<Vec<Category>>§months: Option<Vec<MonthDetail>>§transactions: Option<Vec<TransactionSummary>>§subtransactions: Option<Vec<SubTransaction>>§scheduled_transactions: Option<Vec<ScheduledTransactionSummary>>§scheduled_subtransactions: Option<Vec<ScheduledSubTransaction>>Implementations§
Source§impl BudgetDetail
impl BudgetDetail
pub fn new(id: String, name: String) -> BudgetDetail
Trait Implementations§
Source§impl Clone for BudgetDetail
impl Clone for BudgetDetail
Source§fn clone(&self) -> BudgetDetail
fn clone(&self) -> BudgetDetail
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 BudgetDetail
impl Debug for BudgetDetail
Source§impl<'de> Deserialize<'de> for BudgetDetail
impl<'de> Deserialize<'de> for BudgetDetail
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 PartialEq for BudgetDetail
impl PartialEq for BudgetDetail
Source§impl Serialize for BudgetDetail
impl Serialize for BudgetDetail
impl StructuralPartialEq for BudgetDetail
Auto Trait Implementations§
impl Freeze for BudgetDetail
impl RefUnwindSafe for BudgetDetail
impl Send for BudgetDetail
impl Sync for BudgetDetail
impl Unpin for BudgetDetail
impl UnwindSafe for BudgetDetail
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more