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

pub struct BuildConfig {
    pub build_dir: PathBuf,
    pub create_missing: bool,
    pub preprocess: Option<Vec<String>>,
}

Configuration for the build procedure.

Fields

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

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

Which preprocessors should be applied

Trait Implementations

impl Debug for BuildConfig
[src]

Formats the value using the given formatter. Read more

impl Clone for BuildConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for BuildConfig
[src]

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

This method tests for !=.

impl Default for BuildConfig
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for BuildConfig

impl Sync for BuildConfig