pub struct PriorYearSummary {
pub fiscal_year: i32,
pub entity_code: String,
pub opinion_type: String,
pub materiality: Decimal,
pub total_findings: usize,
pub open_findings: usize,
pub key_audit_matters: Vec<String>,
pub comparatives: Vec<PriorYearComparative>,
pub findings: Vec<PriorYearFinding>,
}Expand description
Prior-year audit engagement summary.
An aggregate record that bundles the prior-year opinion, materiality, comparatives, and findings into a single envelope for the current-year audit team.
Fields§
§fiscal_year: i32Prior fiscal year (e.g., 2024 if current year is 2025)
entity_code: StringEntity / company code
opinion_type: StringAudit opinion issued: “unmodified”, “qualified”, “adverse”, “disclaimer”
materiality: DecimalPrior-year materiality threshold
total_findings: usizeTotal number of findings raised
open_findings: usizeNumber of findings still open or recurring
key_audit_matters: Vec<String>Key audit matters from the prior-year report
comparatives: Vec<PriorYearComparative>Per-account comparative data
findings: Vec<PriorYearFinding>Prior-year findings carried forward
Trait Implementations§
Source§impl Clone for PriorYearSummary
impl Clone for PriorYearSummary
Source§fn clone(&self) -> PriorYearSummary
fn clone(&self) -> PriorYearSummary
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 PriorYearSummary
impl Debug for PriorYearSummary
Source§impl<'de> Deserialize<'de> for PriorYearSummary
impl<'de> Deserialize<'de> for PriorYearSummary
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 PriorYearSummary
impl RefUnwindSafe for PriorYearSummary
impl Send for PriorYearSummary
impl Sync for PriorYearSummary
impl Unpin for PriorYearSummary
impl UnsafeUnpin for PriorYearSummary
impl UnwindSafe for PriorYearSummary
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