pub struct SubledgerReconciliationEvaluation {Show 23 fields
pub ar_reconciled: bool,
pub ar_gl_balance: Decimal,
pub ar_subledger_balance: Decimal,
pub ar_difference: Decimal,
pub ap_reconciled: bool,
pub ap_gl_balance: Decimal,
pub ap_subledger_balance: Decimal,
pub ap_difference: Decimal,
pub fa_asset_reconciled: bool,
pub fa_asset_gl_balance: Decimal,
pub fa_asset_subledger_balance: Decimal,
pub fa_asset_difference: Decimal,
pub fa_accum_depr_reconciled: bool,
pub fa_accum_depr_gl_balance: Decimal,
pub fa_accum_depr_subledger_balance: Decimal,
pub fa_accum_depr_difference: Decimal,
pub inventory_reconciled: bool,
pub inventory_gl_balance: Decimal,
pub inventory_subledger_balance: Decimal,
pub inventory_difference: Decimal,
pub completeness_score: f64,
pub subledgers_reconciled: usize,
pub subledgers_total: usize,
}Expand description
Results of subledger reconciliation evaluation.
Fields§
§ar_reconciled: boolAR reconciliation status.
ar_gl_balance: DecimalAR GL balance.
ar_subledger_balance: DecimalAR subledger balance.
ar_difference: DecimalAR difference.
ap_reconciled: boolAP reconciliation status.
ap_gl_balance: DecimalAP GL balance.
ap_subledger_balance: DecimalAP subledger balance.
ap_difference: DecimalAP difference.
fa_asset_reconciled: boolFA asset reconciliation status.
fa_asset_gl_balance: DecimalFA asset GL balance.
fa_asset_subledger_balance: DecimalFA asset subledger balance.
fa_asset_difference: DecimalFA asset difference.
fa_accum_depr_reconciled: boolFA accumulated depreciation reconciliation status.
fa_accum_depr_gl_balance: DecimalFA accumulated depreciation GL balance.
fa_accum_depr_subledger_balance: DecimalFA accumulated depreciation subledger balance.
fa_accum_depr_difference: DecimalFA accumulated depreciation difference.
inventory_reconciled: boolInventory reconciliation status.
inventory_gl_balance: DecimalInventory GL balance.
inventory_subledger_balance: DecimalInventory subledger balance.
inventory_difference: DecimalInventory difference.
completeness_score: f64Overall completeness score (0.0-1.0).
subledgers_reconciled: usizeNumber of subledgers reconciled.
subledgers_total: usizeTotal subledgers checked.
Trait Implementations§
Source§impl Clone for SubledgerReconciliationEvaluation
impl Clone for SubledgerReconciliationEvaluation
Source§fn clone(&self) -> SubledgerReconciliationEvaluation
fn clone(&self) -> SubledgerReconciliationEvaluation
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<'de> Deserialize<'de> for SubledgerReconciliationEvaluation
impl<'de> Deserialize<'de> for SubledgerReconciliationEvaluation
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 SubledgerReconciliationEvaluation
impl RefUnwindSafe for SubledgerReconciliationEvaluation
impl Send for SubledgerReconciliationEvaluation
impl Sync for SubledgerReconciliationEvaluation
impl Unpin for SubledgerReconciliationEvaluation
impl UnwindSafe for SubledgerReconciliationEvaluation
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.