[][src]Struct mdbook::theme::Theme

pub struct Theme {
    pub index: Vec<u8>,
    pub header: Vec<u8>,
    pub chrome_css: Vec<u8>,
    pub general_css: Vec<u8>,
    pub print_css: Vec<u8>,
    pub variables_css: Vec<u8>,
    pub favicon: Vec<u8>,
    pub js: Vec<u8>,
    pub highlight_css: Vec<u8>,
    pub tomorrow_night_css: Vec<u8>,
    pub ayu_highlight_css: Vec<u8>,
    pub highlight_js: Vec<u8>,
    pub clipboard_js: Vec<u8>,
}

The Theme struct should be used instead of the static variables because the new() method will look if the user has a theme directory in their source folder and use the users theme instead of the default.

You should only ever use the static variables directly if you want to override the user's theme with the defaults.

Fields

index: Vec<u8>header: Vec<u8>chrome_css: Vec<u8>general_css: Vec<u8>print_css: Vec<u8>variables_css: Vec<u8>favicon: Vec<u8>js: Vec<u8>highlight_css: Vec<u8>tomorrow_night_css: Vec<u8>ayu_highlight_css: Vec<u8>highlight_js: Vec<u8>clipboard_js: Vec<u8>

Methods

impl Theme
[src]

pub fn new<P: AsRef<Path>>(theme_dir: P) -> Self
[src]

Creates a Theme from the given theme_dir. If a file is found in the theme dir, it will override the default version.

Trait Implementations

impl Default for Theme
[src]

impl PartialEq<Theme> for Theme
[src]

impl Debug for Theme
[src]

Auto Trait Implementations

impl Send for Theme

impl Sync for Theme

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]