pub mod def14a;
pub mod eightk;
pub mod form13f;
pub mod form144;
pub mod form3;
pub mod form4;
pub mod form5;
pub mod formd;
pub mod npx;
pub mod ownership;
pub mod prospectus;
pub mod s1;
pub mod s3;
pub mod s4;
pub mod schedule13;
pub mod ten_k;
pub mod ten_q;
pub mod xbrl;
#[derive(Debug, Clone, Default)]
pub struct FormReport {
pub files_read: usize,
pub parse_errors: usize,
pub rows_written: usize,
pub duration_ms: u128,
}
impl FormReport {
pub fn add(&mut self, other: FormReport) {
self.files_read += other.files_read;
self.parse_errors += other.parse_errors;
self.rows_written += other.rows_written;
self.duration_ms += other.duration_ms;
}
}