pub struct BudgetDetailAllOf {
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§
§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 BudgetDetailAllOf
impl BudgetDetailAllOf
pub fn new() -> BudgetDetailAllOf
Trait Implementations§
Source§impl Clone for BudgetDetailAllOf
impl Clone for BudgetDetailAllOf
Source§fn clone(&self) -> BudgetDetailAllOf
fn clone(&self) -> BudgetDetailAllOf
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 BudgetDetailAllOf
impl Debug for BudgetDetailAllOf
Source§impl<'de> Deserialize<'de> for BudgetDetailAllOf
impl<'de> Deserialize<'de> for BudgetDetailAllOf
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 BudgetDetailAllOf
impl PartialEq for BudgetDetailAllOf
Source§impl Serialize for BudgetDetailAllOf
impl Serialize for BudgetDetailAllOf
impl StructuralPartialEq for BudgetDetailAllOf
Auto Trait Implementations§
impl Freeze for BudgetDetailAllOf
impl RefUnwindSafe for BudgetDetailAllOf
impl Send for BudgetDetailAllOf
impl Sync for BudgetDetailAllOf
impl Unpin for BudgetDetailAllOf
impl UnwindSafe for BudgetDetailAllOf
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