datasynth-core 2.4.0

Core domain models, traits, and distributions for synthetic enterprise data generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Fixed Assets (FA) subledger models.
//!
//! This module provides models for:
//! - Fixed asset register
//! - Depreciation schedules and calculations
//! - Asset disposals and retirements

mod asset;
mod depreciation;
mod disposal;

pub use asset::*;
pub use depreciation::*;
pub use disposal::*;