[][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.

Implementations

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 Clone for ColorSpecs[src]

impl Debug for ColorSpecs[src]

impl Default for ColorSpecs[src]

impl Eq for ColorSpecs[src]

impl PartialEq<ColorSpecs> for ColorSpecs[src]

impl StructuralEq for ColorSpecs[src]

impl StructuralPartialEq for ColorSpecs[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.