[][src]Struct mdbook_linkcheck::ValidationOutcome

pub struct ValidationOutcome {
    pub valid_links: Vec<Link>,
    pub invalid_links: Vec<InvalidLink>,
    pub ignored: Vec<Link>,
    pub unknown_schema: Vec<Link>,
}

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_schema: Vec<Link>

Links which we don't know how to handle.

Methods

impl ValidationOutcome[src]

pub fn generate_diagnostics(&self) -> Vec<Diagnostic>[src]

Generate a list of Diagnostic messages from this ValidationOutcome.

Trait Implementations

impl Default for ValidationOutcome[src]

impl Debug for ValidationOutcome[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

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