Skip to main content

DocumentChainStats

Struct DocumentChainStats 

Source
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: usize

Total P2P chains generated

§p2p_three_way_match_passed: usize

P2P chains with three-way match passed

§p2p_completed: usize

P2P chains fully completed (payment made)

§o2c_chains: usize

Total O2C chains generated

§o2c_credit_check_passed: usize

O2C chains with credit check passed

§o2c_completed: usize

O2C chains fully completed (payment received)

§purchase_orders: usize

Total purchase orders

§goods_receipts: usize

Total goods receipts

§vendor_invoices: usize

Total vendor invoices

§ap_payments: usize

Total AP payments

§sales_orders: usize

Total sales orders

§deliveries: usize

Total deliveries

§customer_invoices: usize

Total customer invoices

§ar_receipts: usize

Total AR receipts

Trait Implementations§

Source§

impl Debug for DocumentChainStats

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for DocumentChainStats

Source§

fn default() -> DocumentChainStats

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V