pub struct Config {
pub follow_web_links: bool,
pub traverse_parent_directories: bool,
pub exclude: Vec<HashedRegex>,
pub user_agent: String,
pub cache_timeout: u64,
pub warning_policy: WarningPolicy,
pub http_headers: HashMap<HashedRegex, Vec<HttpHeader>>,
}Expand description
The configuration options available with this backend.
Fields§
§follow_web_links: boolIf 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.
traverse_parent_directories: boolAre we allowed to link to files outside of the book’s source directory?
exclude: Vec<HashedRegex>A list of URL patterns to ignore when checking remote links.
user_agent: StringThe user-agent used whenever any web requests are made.
cache_timeout: u64The number of seconds a cached result is valid for.
warning_policy: WarningPolicyThe policy to use when warnings are encountered.
http_headers: HashMap<HashedRegex, Vec<HttpHeader>>The map of regexes representing sets of web sites and the list of HTTP headers that must be sent to matching sites.
Implementations§
Source§impl Config
impl Config
Sourcepub const DEFAULT_CACHE_TIMEOUT: Duration
pub const DEFAULT_CACHE_TIMEOUT: Duration
The default cache timeout (around 12 hours).
Sourcepub const DEFAULT_USER_AGENT: &'static str = "mdbook-linkcheck-0.7.7"
pub const DEFAULT_USER_AGENT: &'static str = "mdbook-linkcheck-0.7.7"
The default user-agent.
Sourcepub fn should_skip(&self, link: &str) -> bool
pub fn should_skip(&self, link: &str) -> bool
Checks Config::exclude to see if the provided link should be
skipped.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Config
impl<'de> Deserialize<'de> for Config
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Config
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more