Trait mdbook_linkcheck::errors::BrokenLink[][src]

pub trait BrokenLink: Fail {
    fn chapter(&self) -> &Path;
fn line(&self) -> usize;
fn as_fail(&self) -> &Fail; }

Some arbitrary broken link which occurs at a specific line in a chapter. The Display impl should state why the link is "broken".

Required Methods

Which chapter it was in.

The line this error occurred on.

Implementors