2022-06-18 21:56:31 -07:00
|
|
|
use super::*;
|
2019-11-10 23:17:47 -08:00
|
|
|
|
2021-06-08 01:01:27 -07:00
|
|
|
#[derive(Debug, Clone)]
|
2019-11-10 23:17:47 -08:00
|
|
|
pub(crate) enum Setting<'src> {
|
2022-02-14 18:37:06 -08:00
|
|
|
AllowDuplicateRecipes(bool),
|
2021-03-28 22:38:07 -07:00
|
|
|
DotenvLoad(bool),
|
2021-04-24 18:29:58 -07:00
|
|
|
Export(bool),
|
|
|
|
PositionalArguments(bool),
|
|
|
|
Shell(Shell<'src>),
|
2022-01-18 11:02:15 -08:00
|
|
|
WindowsPowerShell(bool),
|
2022-05-31 13:01:59 -07:00
|
|
|
WindowsShell(Shell<'src>),
|
2019-11-10 23:17:47 -08:00
|
|
|
}
|
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 {
|
2022-02-14 18:37:06 -08:00
|
|
|
Setting::AllowDuplicateRecipes(value)
|
|
|
|
| Setting::DotenvLoad(value)
|
2022-01-18 11:02:15 -08:00
|
|
|
| Setting::Export(value)
|
|
|
|
| Setting::PositionalArguments(value)
|
|
|
|
| Setting::WindowsPowerShell(value) => write!(f, "{}", value),
|
2022-05-31 13:01:59 -07:00
|
|
|
Setting::Shell(shell) | Setting::WindowsShell(shell) => write!(f, "{}", shell),
|
2021-06-08 01:01:27 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|