1
2
3
4
5
6
7
8
9
10
11
12
13
//! Configuration for the CLI client.

/// Control whether to use colors in the CLI output.
#[derive(Clone, Debug)]
#[non_exhaustive]
pub enum Color {
    /// Automatically determine whether to use colors.
    Auto,
    /// Always use colors.
    Always,
    /// Never use colors.
    Never,
}