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

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

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 Debug for ClassStyle
[src]

Formats the value using the given formatter.

impl PartialEq for ClassStyle
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ClassStyle
[src]

impl Clone for ClassStyle
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ClassStyle
[src]