pub struct MaterialityGeneratorConfig {
pub pm_percentage: Decimal,
pub minimum_overall_materiality: Decimal,
}Expand description
Configuration for the materiality generator.
Fields§
§pm_percentage: DecimalPerformance materiality as a fraction of overall materiality. Must be in [0.50, 0.75] per ISA 320 guidance.
minimum_overall_materiality: DecimalMinimum benchmark amount — prevents immaterial overall materiality for micro-entities.
Trait Implementations§
Source§impl Clone for MaterialityGeneratorConfig
impl Clone for MaterialityGeneratorConfig
Source§fn clone(&self) -> MaterialityGeneratorConfig
fn clone(&self) -> MaterialityGeneratorConfig
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 MaterialityGeneratorConfig
impl Debug for MaterialityGeneratorConfig
Auto Trait Implementations§
impl Freeze for MaterialityGeneratorConfig
impl RefUnwindSafe for MaterialityGeneratorConfig
impl Send for MaterialityGeneratorConfig
impl Sync for MaterialityGeneratorConfig
impl Unpin for MaterialityGeneratorConfig
impl UnsafeUnpin for MaterialityGeneratorConfig
impl UnwindSafe for MaterialityGeneratorConfig
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