Struct mdbook_linkcheck::errors::UnsuccessfulStatus[][src]

pub struct UnsuccessfulStatus {
    pub url: Url,
    pub code: StatusCode,
    pub chapter: PathBuf,
    pub line: usize,
}

Received an unsuccessful status code when fetching a resource from the internet.

Fields

Trait Implementations

The line this error occurred on.

Which chapter it was in.

impl Debug for UnsuccessfulStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for UnsuccessfulStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

Auto Trait Implementations