qlty_coverage/transform/
settings.rs

1use crate::formats::Formats;
2use serde::{Deserialize, Serialize};
3
4#[derive(Debug, Serialize, Deserialize, Clone)]
5pub struct Settings {
6    pub path: String,
7    pub report_format: Option<Formats>,
8    pub add_prefix: Option<String>,
9    pub strip_prefix: Option<String>,
10}