pub struct ARPeriodTransactions {
pub invoices: Vec<ARInvoice>,
pub receipts: Vec<ARReceipt>,
pub credit_memos: Vec<ARCreditMemo>,
pub journal_entries: Vec<JournalEntry>,
}Expand description
Result of period AR generation.
Fields§
§invoices: Vec<ARInvoice>Generated invoices.
receipts: Vec<ARReceipt>Generated receipts.
credit_memos: Vec<ARCreditMemo>Generated credit memos.
journal_entries: Vec<JournalEntry>Corresponding journal entries.
Trait Implementations§
Source§impl Clone for ARPeriodTransactions
impl Clone for ARPeriodTransactions
Source§fn clone(&self) -> ARPeriodTransactions
fn clone(&self) -> ARPeriodTransactions
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 moreAuto Trait Implementations§
impl Freeze for ARPeriodTransactions
impl RefUnwindSafe for ARPeriodTransactions
impl Send for ARPeriodTransactions
impl Sync for ARPeriodTransactions
impl Unpin for ARPeriodTransactions
impl UnwindSafe for ARPeriodTransactions
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