diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2022-02-04 14:59:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-04 14:59:08 +0100 |
| commit | 1426f0e6f03d64902ac75a47eba800cbf82d7d41 (patch) | |
| tree | 66c8c85ce1055300fb81783ae74a5ec3f605714b | |
| parent | 9351d311d48527d647eaa9f2a3b8e863c3ed8bb5 (diff) | |
| parent | cdd22547f0a183920bd730af6c6c18caac49b456 (diff) | |
| download | rust-1426f0e6f03d64902ac75a47eba800cbf82d7d41.tar.gz rust-1426f0e6f03d64902ac75a47eba800cbf82d7d41.zip | |
Rollup merge of #93638 - notriddle:notriddle/unused-hash, r=GuillaumeGomez
rustdoc: remove unused Hash impl
| -rw-r--r-- | src/librustdoc/clean/types.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/clean/types.rs b/src/librustdoc/clean/types.rs index 14c93ce2bdc..6feba34134c 100644 --- a/src/librustdoc/clean/types.rs +++ b/src/librustdoc/clean/types.rs @@ -953,7 +953,7 @@ crate fn collapse_doc_fragments(doc_strings: &[DocFragment]) -> String { /// A link that has not yet been rendered. /// /// This link will be turned into a rendered link by [`Item::links`]. -#[derive(Clone, Debug, PartialEq, Eq, Hash)] +#[derive(Clone, Debug, PartialEq, Eq)] crate struct ItemLink { /// The original link written in the markdown crate link: String, |
