just/src/setting.rs

40 lines
1.1 KiB
Rust
Raw Normal View History

use super::*;
2021-06-08 01:01:27 -07:00
#[derive(Debug, Clone)]
pub(crate) enum Setting<'src> {
2022-02-14 18:37:06 -08:00
AllowDuplicateRecipes(bool),
AllowDuplicateVariables(bool),
DotenvFilename(String),
DotenvLoad(bool),
DotenvPath(String),
Export(bool),
Fallback(bool),
IgnoreComments(bool),
PositionalArguments(bool),
Quiet(bool),
Shell(Shell<'src>),
2022-10-25 16:57:20 -07:00
Tempdir(String),
2022-01-18 11:02:15 -08:00
WindowsPowerShell(bool),
2022-05-31 13:01:59 -07:00
WindowsShell(Shell<'src>),
}
2021-06-08 01:01:27 -07:00
impl<'src> Display for Setting<'src> {
fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
match self {
2024-05-14 20:07:41 -07:00
Self::AllowDuplicateRecipes(value)
| Self::AllowDuplicateVariables(value)
| Self::DotenvLoad(value)
| Self::Export(value)
| Self::Fallback(value)
| Self::IgnoreComments(value)
| Self::PositionalArguments(value)
| Self::Quiet(value)
| Self::WindowsPowerShell(value) => write!(f, "{value}"),
Self::Shell(shell) | Self::WindowsShell(shell) => write!(f, "{shell}"),
Self::DotenvFilename(value) | Self::DotenvPath(value) | Self::Tempdir(value) => {
write!(f, "{value:?}")
2022-10-25 16:57:20 -07:00
}
2021-06-08 01:01:27 -07:00
}
}
}