pub struct AuditGenerationConfig {
pub enabled: bool,
pub generate_workpapers: bool,
pub engagement_types: AuditEngagementTypesConfig,
pub workpapers: WorkpaperConfig,
pub team: AuditTeamConfig,
pub review: ReviewWorkflowConfig,
}Expand description
Audit engagement and workpaper generation configuration.
Fields§
§enabled: boolEnable audit engagement generation
generate_workpapers: boolGenerate engagement documents and workpapers
engagement_types: AuditEngagementTypesConfigDefault engagement type distribution
workpapers: WorkpaperConfigWorkpaper configuration
team: AuditTeamConfigTeam configuration
review: ReviewWorkflowConfigReview workflow configuration
Trait Implementations§
Source§impl Clone for AuditGenerationConfig
impl Clone for AuditGenerationConfig
Source§fn clone(&self) -> AuditGenerationConfig
fn clone(&self) -> AuditGenerationConfig
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 AuditGenerationConfig
impl Debug for AuditGenerationConfig
Source§impl Default for AuditGenerationConfig
impl Default for AuditGenerationConfig
Source§impl<'de> Deserialize<'de> for AuditGenerationConfig
impl<'de> Deserialize<'de> for AuditGenerationConfig
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 AuditGenerationConfig
impl RefUnwindSafe for AuditGenerationConfig
impl Send for AuditGenerationConfig
impl Sync for AuditGenerationConfig
impl Unpin for AuditGenerationConfig
impl UnwindSafe for AuditGenerationConfig
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