Struct mdbook::config::htmlconfig::HtmlConfig [] [src]

pub struct HtmlConfig { /* fields omitted */ }

Methods

impl HtmlConfig
[src]

Creates a new HtmlConfig struct containing the configuration parameters for the HTML renderer.

let output = PathBuf::from("root/book");
let config = HtmlConfig::new(PathBuf::from("root"));

assert_eq!(config.get_destination(), &output);

Trait Implementations

impl Debug for HtmlConfig
[src]

Formats the value using the given formatter.

impl Clone for HtmlConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for HtmlConfig
[src]

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

This method tests for !=.

impl Eq for HtmlConfig
[src]