[][src]Struct mdbook::config::BuildConfig

pub struct BuildConfig {
    pub build_dir: PathBuf,
    pub create_missing: bool,
    pub use_default_preprocessors: bool,
}

Configuration for the build procedure.

Fields

build_dir: PathBuf

Where to put built artefacts relative to the book's root directory.

create_missing: bool

Should non-existent markdown files specified in SETTINGS.md be created if they don't exist?

use_default_preprocessors: bool

Should the default preprocessors always be used when they are compatible with the renderer?

Trait Implementations

impl Default for BuildConfig
[src]

impl PartialEq<BuildConfig> for BuildConfig
[src]

impl Clone for BuildConfig
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for BuildConfig
[src]

impl Serialize for BuildConfig
[src]

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

Auto Trait Implementations

impl Send for BuildConfig

impl Sync for BuildConfig

Blanket Implementations

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]