Struct git_config::values::Color[][src]

pub struct Color {
    pub foreground: Option<ColorValue>,
    pub background: Option<ColorValue>,
    pub attributes: Vec<ColorAttribute>,
}

Any value that may contain a foreground color, background color, a collection of color (text) modifiers, or a combination of any of the aforementioned values.

Note that git-config allows color values to simply be a collection of ColorAttributes, and does not require a ColorValue for either the foreground or background color.

Fields

foreground: Option<ColorValue>

A provided foreground color

background: Option<ColorValue>

A provided background color

attributes: Vec<ColorAttribute>

A potentially empty list of text attributes

Implementations

impl Color[src]

#[must_use]pub fn to_vec(&self) -> Vec<u8>[src]

Generates a byte representation of the value. This should be used when non-UTF-8 sequences are present or a UTF-8 representation can’t be guaranteed.

Trait Implementations

impl Clone for Color[src]

impl Debug for Color[src]

impl Default for Color[src]

impl Display for Color[src]

impl Eq for Color[src]

impl FromStr for Color[src]

type Err = ColorParseError

The associated error which can be returned from parsing.

impl Hash for Color[src]

impl Into<Vec<u8, Global>> for Color[src]

impl Into<Vec<u8, Global>> for &Color[src]

impl Ord for Color[src]

impl PartialEq<Color> for Color[src]

impl PartialOrd<Color> for Color[src]

impl StructuralEq for Color[src]

impl StructuralPartialEq for Color[src]

impl TryFrom<&'_ [u8]> for Color[src]

type Error = ()

The type returned in the event of a conversion error.

impl TryFrom<Cow<'_, [u8]>> for Color[src]

type Error = ()

The type returned in the event of a conversion error.

impl TryFrom<Vec<u8, Global>> for Color[src]

type Error = ()

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Color

impl Send for Color

impl Sync for Color

impl Unpin for Color

impl UnwindSafe for Color

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> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

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

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

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> TryConv for T

impl<T> TryConv for T

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.