[][src]Struct dialect::themes::SolarizedLight

pub struct SolarizedLight;

An implementation of Solarized. Delimiters are not highlighted as red anymore. This is because Vim syntax configurations very rarely highlight delimiters, leaving most delimiters unhighlighted in the original Solarized theme. It turned out that highlighting all delimiters in red is very distracting (and in practice different from the orginal), which is why it was decided not to highlight them.

Trait Implementations

impl Debug for SolarizedLight[src]

impl Theme for SolarizedLight[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, 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.