pub struct AnalyticalProcedureGeneratorConfig {
pub procedures_per_engagement: (u32, u32),
pub consistent_ratio: f64,
pub explained_ratio: f64,
pub further_ratio: f64,
pub misstatement_ratio: f64,
}Expand description
Configuration for the analytical procedure generator (ISA 520).
Fields§
§procedures_per_engagement: (u32, u32)Number of procedures to generate per engagement (min, max)
consistent_ratio: f64Fraction of procedures that conclude Consistent
explained_ratio: f64Fraction of procedures that conclude ExplainedVariance
further_ratio: f64Fraction of procedures that conclude FurtherInvestigation
misstatement_ratio: f64Fraction of procedures that conclude PossibleMisstatement
Trait Implementations§
Source§impl Clone for AnalyticalProcedureGeneratorConfig
impl Clone for AnalyticalProcedureGeneratorConfig
Source§fn clone(&self) -> AnalyticalProcedureGeneratorConfig
fn clone(&self) -> AnalyticalProcedureGeneratorConfig
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 moreAuto Trait Implementations§
impl Freeze for AnalyticalProcedureGeneratorConfig
impl RefUnwindSafe for AnalyticalProcedureGeneratorConfig
impl Send for AnalyticalProcedureGeneratorConfig
impl Sync for AnalyticalProcedureGeneratorConfig
impl Unpin for AnalyticalProcedureGeneratorConfig
impl UnsafeUnpin for AnalyticalProcedureGeneratorConfig
impl UnwindSafe for AnalyticalProcedureGeneratorConfig
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