Struct mdbook_linkcheck::errors::ForbiddenPath[][src]

pub struct ForbiddenPath {
    pub path: PathBuf,
    pub chapter: PathBuf,
    pub line: usize,
}

Fields

Trait Implementations

The line this error occurred on.

Which chapter it was in.

impl Debug for ForbiddenPath
[src]

Formats the value using the given formatter. Read more

impl Clone for ForbiddenPath
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ForbiddenPath
[src]

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

This method tests for !=.

impl Display for ForbiddenPath
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations