pub struct DocumentChainStats {Show 14 fields
pub p2p_chains: usize,
pub p2p_three_way_match_passed: usize,
pub p2p_completed: usize,
pub o2c_chains: usize,
pub o2c_credit_check_passed: usize,
pub o2c_completed: usize,
pub purchase_orders: usize,
pub goods_receipts: usize,
pub vendor_invoices: usize,
pub ap_payments: usize,
pub sales_orders: usize,
pub deliveries: usize,
pub customer_invoices: usize,
pub ar_receipts: usize,
}Expand description
Summary statistics for generated document chains.
Fields§
§p2p_chains: usizeTotal P2P chains generated
p2p_three_way_match_passed: usizeP2P chains with three-way match passed
p2p_completed: usizeP2P chains fully completed (payment made)
o2c_chains: usizeTotal O2C chains generated
o2c_credit_check_passed: usizeO2C chains with credit check passed
o2c_completed: usizeO2C chains fully completed (payment received)
purchase_orders: usizeTotal purchase orders
goods_receipts: usizeTotal goods receipts
vendor_invoices: usizeTotal vendor invoices
ap_payments: usizeTotal AP payments
sales_orders: usizeTotal sales orders
deliveries: usizeTotal deliveries
customer_invoices: usizeTotal customer invoices
ar_receipts: usizeTotal AR receipts
Trait Implementations§
Source§impl Debug for DocumentChainStats
impl Debug for DocumentChainStats
Source§impl Default for DocumentChainStats
impl Default for DocumentChainStats
Source§fn default() -> DocumentChainStats
fn default() -> DocumentChainStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DocumentChainStats
impl RefUnwindSafe for DocumentChainStats
impl Send for DocumentChainStats
impl Sync for DocumentChainStats
impl Unpin for DocumentChainStats
impl UnwindSafe for DocumentChainStats
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