[][src]Struct codespan_reporting::ColorArg

pub struct ColorArg(pub ColorChoice);

A command line argument that configures the coloring of the output

This can be used with command line argument parsers like clap or structopt.

Example

extern crate codespan_reporting;
#[macro_use]
extern crate structopt;

use structopt::StructOpt;
use codespan_reporting::termcolor::StandardStream;
use codespan_reporting::ColorArg;

#[derive(Debug, StructOpt)]
#[structopt(name = "groovey-app")]
pub struct Opts {
    /// Configure coloring of output
    #[structopt(
        long = "color",
        parse(try_from_str),
        default_value = "auto",
        raw(possible_values = "ColorArg::VARIANTS", case_insensitive = "true")
    )]
    pub color: ColorArg,
}

fn main() {
    let opts = Opts::from_args();
    let writer = StandardStream::stderr(opts.color.into());
}

Methods

impl ColorArg[src]

pub const VARIANTS: &'static [&'static str][src]

Allowed values the argument

This is useful for generating documentation via clap or structopt's possible_values configuration.

Trait Implementations

impl PartialEq<ColorArg> for ColorArg[src]

impl Clone for ColorArg[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for ColorArg[src]

impl Into<ColorChoice> for ColorArg[src]

impl Copy for ColorArg[src]

impl Debug for ColorArg[src]

impl FromStr for ColorArg[src]

type Err = &'static str

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Send for ColorArg

impl Sync for ColorArg

Blanket Implementations

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

type Owned = T

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.