Skip to main content

tsffs/os/
mod.rs

1#![allow(unused)]
2
3use std::{collections::HashMap, path::PathBuf};
4
5use lcov2::Records;
6
7pub mod windows;
8
9#[derive(Debug)]
10pub struct DebugInfoConfig<'a> {
11    pub system: bool,
12    pub user_debug_info: &'a HashMap<String, Vec<PathBuf>>,
13    pub coverage: &'a mut Records,
14}