[][src]Struct struckdown::processors::Syntect

pub struct Syntect {
    pub theme: Option<String>,
    pub theme_path: Option<PathBuf>,
}

Implements syntax highlighting via syntect.

When applied this wraps the stream in a SyntectIter.

Fields

theme: Option<String>

The name of the theme to use. If both this and theme_path is not set then a default theme is loaded. If theme_path is set then the theme in the theme_path folder is used.

theme_path: Option<PathBuf>

When theme is not set, then the path to the .tmTheme file to load otherwise the folder to a collection of theme files.

Trait Implementations

impl Clone for Syntect[src]

impl Debug for Syntect[src]

impl Default for Syntect[src]

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

impl Processor for Syntect[src]

impl Serialize for Syntect[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<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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,