just/src/use_color.rs
2024-06-30 19:16:10 +00:00

9 lines
123 B
Rust

use super::*;
#[derive(Copy, Clone, Debug, PartialEq, ValueEnum)]
pub(crate) enum UseColor {
Auto,
Always,
Never,
}