bacon 2.12.1

background rust compiler
1
2
3
4
5
6
7
8
9
10
11
12
13
use {
    serde::Deserialize,
    std::path::PathBuf,
};

/// Configuration of export, may be in prefs.toml
/// or bacon.toml
#[derive(Debug, Clone, Deserialize)]
pub struct ExportConfig {
    pub enabled: Option<bool>,
    pub path: Option<PathBuf>,
    pub line_format: Option<String>,
}