[][src]Struct mdbook_linkcheck::ValidationOutcome

pub struct ValidationOutcome {
    pub valid_links: Vec<Link>,
    pub invalid_links: Vec<InvalidLink>,
    pub ignored: Vec<Link>,
    pub unknown_category: Vec<Link>,
    pub incomplete_links: Vec<IncompleteLink>,
}

The outcome of validating a set of links.

Fields

valid_links: Vec<Link>

Valid links.

invalid_links: Vec<InvalidLink>

Links where validation failed.

ignored: Vec<Link>

Links which have been ignored (e.g. due to Config::follow_web_links).

unknown_category: Vec<Link>

Links which we don't know how to handle.

incomplete_links: Vec<IncompleteLink>

Potentially incomplete links.

Implementations

impl ValidationOutcome[src]

pub fn generate_diagnostics(
    &self,
    files: &Files<String>,
    warning_policy: WarningPolicy
) -> Vec<Diagnostic<FileId>>
[src]

Generate a list of Diagnostic messages from this ValidationOutcome.

Trait Implementations

impl Debug for ValidationOutcome[src]

impl Default for ValidationOutcome[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,