Skip to main content

GeneratorConfig

Struct GeneratorConfig 

Source
pub struct GeneratorConfig {
Show 29 fields pub global: GlobalConfig, pub companies: Vec<CompanyConfig>, pub chart_of_accounts: ChartOfAccountsConfig, pub transactions: TransactionConfig, pub output: OutputConfig, pub fraud: FraudConfig, pub data_quality: DataQualitySchemaConfig, pub internal_controls: InternalControlsConfig, pub business_processes: BusinessProcessConfig, pub user_personas: UserPersonaConfig, pub templates: TemplateConfig, pub approval: ApprovalConfig, pub departments: DepartmentConfig, pub master_data: MasterDataConfig, pub document_flows: DocumentFlowConfig, pub intercompany: IntercompanyConfig, pub balance: BalanceConfig, pub ocpm: OcpmConfig, pub audit: AuditGenerationConfig, pub banking: BankingConfig, pub scenario: ScenarioConfig, pub temporal: TemporalDriftConfig, pub graph_export: GraphExportConfig, pub streaming: StreamingSchemaConfig, pub rate_limit: RateLimitSchemaConfig, pub temporal_attributes: TemporalAttributeSchemaConfig, pub relationships: RelationshipSchemaConfig, pub accounting_standards: AccountingStandardsConfig, pub audit_standards: AuditStandardsConfig,
}
Expand description

Root configuration for the synthetic data generator.

Fields§

§global: GlobalConfig

Global settings

§companies: Vec<CompanyConfig>

Company configuration

§chart_of_accounts: ChartOfAccountsConfig

Chart of Accounts configuration

§transactions: TransactionConfig

Transaction generation settings

§output: OutputConfig

Output configuration

§fraud: FraudConfig

Fraud simulation settings

§data_quality: DataQualitySchemaConfig

Data quality variation settings

§internal_controls: InternalControlsConfig

Internal Controls System settings

§business_processes: BusinessProcessConfig

Business process mix

§user_personas: UserPersonaConfig

User persona distribution

§templates: TemplateConfig

Template configuration for realistic data

§approval: ApprovalConfig

Approval workflow configuration

§departments: DepartmentConfig

Department structure configuration

§master_data: MasterDataConfig

Master data generation settings

§document_flows: DocumentFlowConfig

Document flow generation settings

§intercompany: IntercompanyConfig

Intercompany transaction settings

§balance: BalanceConfig

Balance and trial balance settings

§ocpm: OcpmConfig

OCPM (Object-Centric Process Mining) settings

§audit: AuditGenerationConfig

Audit engagement and workpaper generation settings

§banking: BankingConfig

Banking KYC/AML transaction generation settings

§scenario: ScenarioConfig

Scenario configuration for metadata and tagging (Phase 1.3)

§temporal: TemporalDriftConfig

Temporal drift configuration for simulating distribution changes over time (Phase 2.2)

§graph_export: GraphExportConfig

Graph export configuration for accounting network export

§streaming: StreamingSchemaConfig

Streaming output API configuration

§rate_limit: RateLimitSchemaConfig

Rate limiting configuration

§temporal_attributes: TemporalAttributeSchemaConfig

Temporal attribute generation configuration

§relationships: RelationshipSchemaConfig

Relationship generation configuration

§accounting_standards: AccountingStandardsConfig

Accounting standards framework configuration (IFRS, US GAAP)

§audit_standards: AuditStandardsConfig

Audit standards framework configuration (ISA, PCAOB)

Trait Implementations§

Source§

impl Clone for GeneratorConfig

Source§

fn clone(&self) -> GeneratorConfig

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for GeneratorConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for GeneratorConfig

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for GeneratorConfig

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,