pub struct PriorYearFinding {
pub finding_id: Uuid,
pub fiscal_year: i32,
pub finding_type: String,
pub description: String,
pub status: String,
pub risk_area: String,
pub original_amount: Option<Decimal>,
pub remediation_date: Option<NaiveDate>,
pub follow_up_required: bool,
}Expand description
Prior-year audit finding for follow-up procedures.
Findings from the prior-year engagement that may require current-year follow-up, re-testing, or disclosure in the current audit report.
Fields§
§finding_id: UuidUnique finding identifier (deterministic UUID)
fiscal_year: i32Fiscal year the finding was originally raised
finding_type: StringFinding classification: “control_deficiency”, “misstatement”, “significant_deficiency”, “material_weakness”
description: StringNarrative description of the finding
status: StringCurrent remediation status: “remediated”, “open”, “recurring”, “partially_remediated”
risk_area: StringRisk area: “revenue”, “receivables”, “payables”, “inventory”, “estimates”
original_amount: Option<Decimal>Original monetary amount of the finding (if applicable)
remediation_date: Option<NaiveDate>Date on which remediation was completed (if applicable)
follow_up_required: boolWhether the current-year audit team must follow up
Trait Implementations§
Source§impl Clone for PriorYearFinding
impl Clone for PriorYearFinding
Source§fn clone(&self) -> PriorYearFinding
fn clone(&self) -> PriorYearFinding
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 PriorYearFinding
impl Debug for PriorYearFinding
Source§impl<'de> Deserialize<'de> for PriorYearFinding
impl<'de> Deserialize<'de> for PriorYearFinding
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 PriorYearFinding
impl RefUnwindSafe for PriorYearFinding
impl Send for PriorYearFinding
impl Sync for PriorYearFinding
impl Unpin for PriorYearFinding
impl UnsafeUnpin for PriorYearFinding
impl UnwindSafe for PriorYearFinding
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