[][src]Enum syntect::html::ClassStyle

pub enum ClassStyle {
    Spaced,
}

Only one style for now, I may add more class styles later. Just here so I don't have to change the API

Variants

Spaced

The classes are the atoms of the scope separated by spaces (e.g source.php becomes source php). This isn't that fast since it has to use the scope repository to look up scope names.

Trait Implementations

impl Clone for ClassStyle[src]

impl Copy for ClassStyle[src]

impl Debug for ClassStyle[src]

impl Eq for ClassStyle[src]

impl PartialEq<ClassStyle> for ClassStyle[src]

impl StructuralEq for ClassStyle[src]

impl StructuralPartialEq for ClassStyle[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<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.