[][src]Struct grep_printer::ColorSpecs

pub struct ColorSpecs { /* fields omitted */ }

A merged set of color specifications.

This set of color specifications represents the various color types that are supported by the printers in this crate. A set of color specifications can be created from a sequence of UserColorSpecs.

Methods

impl ColorSpecs[src]

pub fn new(specs: &[UserColorSpec]) -> ColorSpecs[src]

Create color specifications from a list of user supplied specifications.

pub fn default_with_color() -> ColorSpecs[src]

Create a default set of specifications that have color.

This is distinct from ColorSpecs's Default implementation in that this provides a set of default color choices, where as the Default implementation provides no color choices.

pub fn path(&self) -> &ColorSpec[src]

Return the color specification for coloring file paths.

pub fn line(&self) -> &ColorSpec[src]

Return the color specification for coloring line numbers.

pub fn column(&self) -> &ColorSpec[src]

Return the color specification for coloring column numbers.

pub fn matched(&self) -> &ColorSpec[src]

Return the color specification for coloring matched text.

Trait Implementations

impl Eq for ColorSpecs[src]

impl PartialEq<ColorSpecs> for ColorSpecs[src]

impl Clone for ColorSpecs[src]

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

Performs copy-assignment from source. Read more

impl Default for ColorSpecs[src]

impl Debug for ColorSpecs[src]

Auto Trait Implementations

impl Send for ColorSpecs

impl Sync for ColorSpecs

Blanket Implementations

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

type Owned = T

impl<T> From for T[src]

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

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

type Error = Infallible

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

The type returned in the event of a conversion error.