pub enum Check {
    UpToDate,
    InvalidDepInfo(Error),
    InputChanged,
    IncompatibleVersion(String),
    OutdatedMarkdown,
    OutputChanged,
}

Variants

UpToDate

Everything is up to date.

InvalidDepInfo(Error)

The dependency info is malformed.

InputChanged

The input (template or rustdoc) have changed.

IncompatibleVersion(String)

One or more dependencies use an incompatible version.

OutdatedMarkdown

The readme used an outdated “markdown version”.

OutputChanged

Input and output are different (no dep info was included).

Implementations

Trait Implementations

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.