#[derive(Debug, Clone)]
pub struct ProgramStdoutSetting {
pub error_output: bool,
pub render_output: bool,
}
impl Default for ProgramStdoutSetting {
fn default() -> Self {
ProgramStdoutSetting {
error_output: true,
render_output: true,
}
}
}
#[derive(Debug, Clone)]
#[derive(Default)]
pub struct ProgramUserContext {
pub help: bool,
pub confirm: bool,
}