[][src]Struct alacritty_terminal::config::Colors

pub struct Colors {
    pub primary: PrimaryColors,
    pub cursor: CursorColors,
    pub vi_mode_cursor: CursorColors,
    pub selection: SelectionColors,
    pub dim: Option<AnsiColors>,
    pub indexed_colors: Vec<IndexedColor>,
    pub search: SearchColors,
    // some fields omitted
}

Fields

primary: PrimaryColorscursor: CursorColorsvi_mode_cursor: CursorColorsselection: SelectionColorsdim: Option<AnsiColors>indexed_colors: Vec<IndexedColor>search: SearchColors

Implementations

impl Colors[src]

pub fn normal(&self) -> &AnsiColors[src]

pub fn bright(&self) -> &AnsiColors[src]

pub fn search_bar_foreground(&self) -> Rgb[src]

pub fn search_bar_background(&self) -> Rgb[src]

Trait Implementations

impl Clone for Colors[src]

impl Debug for Colors[src]

impl Default for Colors[src]

impl<'de> Deserialize<'de> for Colors where
    Colors: Default
[src]

impl Eq for Colors[src]

impl<'a> From<&'a Colors> for List[src]

impl PartialEq<Colors> for Colors[src]

impl StructuralEq for Colors[src]

impl StructuralPartialEq for Colors[src]

Auto Trait Implementations

impl RefUnwindSafe for Colors

impl Send for Colors

impl Sync for Colors

impl Unpin for Colors

impl UnwindSafe for Colors

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.