struct DependencyInfoV1 {
    markdown_version: u8,
    template_hash: Hash,
    rustdoc_hash: Hash,
    dependencies: BTreeSet<Dependency>,
}

Fields

markdown_version: u8

The version of the markdown output. If there are significant changes made to the markdown output that require to re-run this tool eventhough none of the inputs has changed, this version should be increased.

template_hash: Hash

The blake3 hash of the template file.

rustdoc_hash: Hash

The blake3 hash of the input rustdoc.

dependencies: BTreeSet<Dependency>

The versions of dependencies that are used for link generation. The first entry of the tuple is the dependency name on crates.io, the second is the version, and the third is the dependency name as seen in Rust code (or missing if it is equivalent to the dependency name on crates.io).

Trait Implementations

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

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.