pub struct EvidenceAnchor {Show 14 fields
pub anchor_id: String,
pub company_code: String,
pub account_code: String,
pub account_description: String,
pub account_type: AccountType,
pub fiscal_year: i32,
pub total_activity: Decimal,
pub transaction_count: u32,
pub is_material: bool,
pub corroborated: bool,
pub corroboration_method: CorroborationMethod,
pub is_dangling: bool,
pub fraud_activity: Decimal,
pub is_fraud_linked: bool,
}Expand description
An ISA-505 external-corroboration record for a single GL account over a fiscal year.
Fields§
§anchor_id: StringUnique anchor identifier.
company_code: StringCompany the account belongs to.
account_code: StringGL account number (the corroboration unit; its associated counterparty is the confirmation recipient).
account_description: StringGL account description.
account_type: AccountTypeGL account type.
fiscal_year: i32Fiscal year the anchor applies to.
total_activity: DecimalTotal posting activity for the account (legitimate + any fraud).
transaction_count: u32Number of journal entries touching the account.
is_material: boolWhether the account is material (its activity share meets the threshold).
corroborated: boolWhether the account’s activity is corroborated by exogenous evidence.
corroboration_method: CorroborationMethodHow it was corroborated (None if not).
is_dangling: boolWhether this is a dangling node: material with no external corroboration (the ISA-505 lead).
fraud_activity: DecimalGround truth: posting activity attributable to fraud journal entries.
is_fraud_linked: boolGround truth: whether the account was touched by any fraud entry.
Trait Implementations§
Source§impl Clone for EvidenceAnchor
impl Clone for EvidenceAnchor
Source§fn clone(&self) -> EvidenceAnchor
fn clone(&self) -> EvidenceAnchor
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for EvidenceAnchor
impl Debug for EvidenceAnchor
Source§impl<'de> Deserialize<'de> for EvidenceAnchor
impl<'de> Deserialize<'de> for EvidenceAnchor
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>,
Auto Trait Implementations§
impl Freeze for EvidenceAnchor
impl RefUnwindSafe for EvidenceAnchor
impl Send for EvidenceAnchor
impl Sync for EvidenceAnchor
impl Unpin for EvidenceAnchor
impl UnsafeUnpin for EvidenceAnchor
impl UnwindSafe for EvidenceAnchor
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
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
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.