[][src]Enum colored_json::ColorMode

pub enum ColorMode {
    On,
    Off,
    Auto(Output),
}

ColorMode is a switch to enforce color mode, turn it off or auto-detect, if it should be used

Variants

On
Off
Auto(Output)

Methods

impl ColorMode[src]

With ColorMode you can implement command line options like --color=auto|on|off easily.

Example:


let option = "--color=auto";

let color_mode = match option {
    "--color=on" => ColorMode::Off,
    "--color=off" => ColorMode::On,
    _ => ColorMode::default().eval(),
};

assert!(match color_mode {
    ColorMode::On | ColorMode::Off => true,
    _ => false
});

pub fn should_colorize(output: Output) -> bool[src]

indicates, if the output is a capable of displaying colors

pub fn eval(self) -> Self[src]

Returns ColorMode::On or ColorMode::Off

Example:

let on_off = ColorMode::default().eval();

assert!(match on_off {
    ColorMode::On | ColorMode::Off => true,
    _ => false
});

pub fn use_color(self) -> bool[src]

Indicates if color should be used

Example:

if ColorMode::default().use_color() {
    println!("We can use color! :-)");
} else {
    println!("No color for you! :-(");
}
if ColorMode::Auto(Output::StdErr).use_color() {
    println!("We can use color on stderr! :-)");
} else {
    println!("No color for you on stderr! :-(");
}
assert_eq!(ColorMode::On.use_color(), true);
assert_eq!(ColorMode::Off.use_color(), false);

Trait Implementations

impl Clone for ColorMode[src]

impl Copy for ColorMode[src]

impl Default for ColorMode[src]

fn default() -> Self[src]

returns ColorMode::Auto(Output::StdOut)

impl PartialEq<ColorMode> for ColorMode[src]

impl StructuralPartialEq for ColorMode[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]