pub struct SubledgerLinkResult {
pub ap_invoices: Vec<APInvoice>,
pub ar_invoices: Vec<ARInvoice>,
pub vendor_invoices_processed: usize,
pub customer_invoices_processed: usize,
}Expand description
Result of linking document flows to subledgers.
Fields§
§ap_invoices: Vec<APInvoice>AP invoices created from vendor invoices.
ar_invoices: Vec<ARInvoice>AR invoices created from customer invoices.
vendor_invoices_processed: usizeNumber of vendor invoices processed.
customer_invoices_processed: usizeNumber of customer invoices processed.
Trait Implementations§
Source§impl Clone for SubledgerLinkResult
impl Clone for SubledgerLinkResult
Source§fn clone(&self) -> SubledgerLinkResult
fn clone(&self) -> SubledgerLinkResult
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 SubledgerLinkResult
impl Debug for SubledgerLinkResult
Source§impl Default for SubledgerLinkResult
impl Default for SubledgerLinkResult
Source§fn default() -> SubledgerLinkResult
fn default() -> SubledgerLinkResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SubledgerLinkResult
impl RefUnwindSafe for SubledgerLinkResult
impl Send for SubledgerLinkResult
impl Sync for SubledgerLinkResult
impl Unpin for SubledgerLinkResult
impl UnwindSafe for SubledgerLinkResult
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