pub struct ControlGeneratorConfig {
pub exception_rate: f64,
pub sod_violation_rate: f64,
pub enable_sox_marking: bool,
pub sox_materiality_threshold: Decimal,
}Expand description
Configuration for the control generator.
Fields§
§exception_rate: f64Rate at which controls result in exceptions (0.0 - 1.0).
sod_violation_rate: f64Rate at which SoD violations occur (0.0 - 1.0).
enable_sox_marking: boolWhether to mark SOX-relevant transactions.
sox_materiality_threshold: DecimalAmount threshold above which transactions are SOX-relevant.
Trait Implementations§
Source§impl Clone for ControlGeneratorConfig
impl Clone for ControlGeneratorConfig
Source§fn clone(&self) -> ControlGeneratorConfig
fn clone(&self) -> ControlGeneratorConfig
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 ControlGeneratorConfig
impl Debug for ControlGeneratorConfig
Auto Trait Implementations§
impl Freeze for ControlGeneratorConfig
impl RefUnwindSafe for ControlGeneratorConfig
impl Send for ControlGeneratorConfig
impl Sync for ControlGeneratorConfig
impl Unpin for ControlGeneratorConfig
impl UnwindSafe for ControlGeneratorConfig
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