Struct mdbook::config::BookConfig [] [src]

pub struct BookConfig {
    pub title: Option<String>,
    pub authors: Vec<String>,
    pub description: Option<String>,
    pub src: PathBuf,
    pub multilingual: bool,
}

Configuration options which are specific to the book and required for loading it from disk.

Fields

The book's title.

The book's authors.

An optional description for the book.

Location of the book source relative to the book's root directory.

Does this book support more than one language?

Trait Implementations

impl Debug for BookConfig
[src]

[src]

Formats the value using the given formatter.

impl Clone for BookConfig
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for BookConfig
[src]

[src]

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

[src]

This method tests for !=.

impl Default for BookConfig
[src]

[src]

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