Struct mdbook_linkcheck::errors::FileNotFound[][src]

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

The user specified a file which doesn't exist.

Fields

Trait Implementations

The line this error occurred on.

Which chapter it was in.

impl Debug for FileNotFound
[src]

Formats the value using the given formatter. Read more

impl Clone for FileNotFound
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for FileNotFound
[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 FileNotFound
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations