pub struct DocumentChainEvaluation {Show 21 fields
pub p2p_total: usize,
pub p2p_complete: usize,
pub p2p_completion_rate: f64,
pub p2p_po_created: usize,
pub p2p_gr_created: usize,
pub p2p_invoice_created: usize,
pub p2p_payment_created: usize,
pub p2p_three_way_match_passed: usize,
pub p2p_three_way_match_rate: f64,
pub o2c_total: usize,
pub o2c_complete: usize,
pub o2c_completion_rate: f64,
pub o2c_so_created: usize,
pub o2c_delivery_created: usize,
pub o2c_invoice_created: usize,
pub o2c_receipt_created: usize,
pub o2c_credit_check_passed: usize,
pub o2c_credit_check_rate: f64,
pub orphan_documents: usize,
pub broken_references: usize,
pub reference_integrity_score: f64,
}Expand description
Results of document chain evaluation.
Fields§
§p2p_total: usizeTotal P2P chains.
p2p_complete: usizeComplete P2P chains.
p2p_completion_rate: f64P2P completion rate.
p2p_po_created: usizeP2P chains with PO created.
p2p_gr_created: usizeP2P chains with GR created.
p2p_invoice_created: usizeP2P chains with invoice created.
p2p_payment_created: usizeP2P chains with payment created.
p2p_three_way_match_passed: usizeP2P chains where three-way match passed.
p2p_three_way_match_rate: f64P2P three-way match rate.
o2c_total: usizeTotal O2C chains.
o2c_complete: usizeComplete O2C chains.
o2c_completion_rate: f64O2C completion rate.
o2c_so_created: usizeO2C chains with SO created.
o2c_delivery_created: usizeO2C chains with delivery created.
o2c_invoice_created: usizeO2C chains with invoice created.
o2c_receipt_created: usizeO2C chains with receipt created.
o2c_credit_check_passed: usizeO2C chains where credit check passed.
o2c_credit_check_rate: f64O2C credit check pass rate.
orphan_documents: usizeNumber of orphan documents (no chain reference).
broken_references: usizeNumber of broken references.
reference_integrity_score: f64Reference integrity score (0.0-1.0).
Trait Implementations§
Source§impl Clone for DocumentChainEvaluation
impl Clone for DocumentChainEvaluation
Source§fn clone(&self) -> DocumentChainEvaluation
fn clone(&self) -> DocumentChainEvaluation
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 DocumentChainEvaluation
impl Debug for DocumentChainEvaluation
Source§impl<'de> Deserialize<'de> for DocumentChainEvaluation
impl<'de> Deserialize<'de> for DocumentChainEvaluation
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
Auto Trait Implementations§
impl Freeze for DocumentChainEvaluation
impl RefUnwindSafe for DocumentChainEvaluation
impl Send for DocumentChainEvaluation
impl Sync for DocumentChainEvaluation
impl Unpin for DocumentChainEvaluation
impl UnwindSafe for DocumentChainEvaluation
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.