[][src]Struct syntect::highlighting::StyleModifier

pub struct StyleModifier {
    pub foreground: Option<Color>,
    pub background: Option<Color>,
    pub font_style: Option<FontStyle>,
}

A change to a Style applied incrementally by a theme rule.

Fields

foreground: Option<Color>

Foreground color.

background: Option<Color>

Background color.

font_style: Option<FontStyle>

Style of the font.

Implementations

impl StyleModifier[src]

pub fn apply(&self, other: StyleModifier) -> StyleModifier[src]

Applies the other modifier to this one, creating a new modifier. Values in other are preferred.

Trait Implementations

impl Clone for StyleModifier[src]

impl Copy for StyleModifier[src]

impl Debug for StyleModifier[src]

impl Default for StyleModifier[src]

impl<'de> Deserialize<'de> for StyleModifier[src]

impl Eq for StyleModifier[src]

impl PartialEq<StyleModifier> for StyleModifier[src]

impl Serialize for StyleModifier[src]

impl StructuralEq for StyleModifier[src]

impl StructuralPartialEq for StyleModifier[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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.