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

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

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?

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

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