Struct mdbook_linkcheck::Config[][src]

pub struct Config {
    pub follow_web_links: bool,
    pub traverse_parent_directories: bool,
    pub exclude: Vec<Regex>,
}

The configuration options available with this backend.

Fields

If a link on the internet is encountered, should we still try to check if it's valid? Defaults to false because this has a big performance impact.

Are we allowed to link to files outside of the book's source directory?

Methods

impl Config
[src]

Trait Implementations

impl Debug for Config
[src]

Formats the value using the given formatter. Read more

impl Clone for Config
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Config
[src]

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

impl PartialEq for Config
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for Config

impl Sync for Config