[−][src]Struct grep_printer::ColorSpecs
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]
fn clone(&self) -> ColorSpecs[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ColorSpecs[src]
impl Default for ColorSpecs[src]
fn default() -> ColorSpecs[src]
impl Eq for ColorSpecs[src]
impl PartialEq<ColorSpecs> for ColorSpecs[src]
fn eq(&self, other: &ColorSpecs) -> bool[src]
fn ne(&self, other: &ColorSpecs) -> bool[src]
impl StructuralEq for ColorSpecs[src]
impl StructuralPartialEq for ColorSpecs[src]
Auto Trait Implementations
impl RefUnwindSafe for ColorSpecs
impl Send for ColorSpecs
impl Sync for ColorSpecs
impl Unpin for ColorSpecs
impl UnwindSafe for ColorSpecs
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,