From cdd22547f0a183920bd730af6c6c18caac49b456 Mon Sep 17 00:00:00 2001 From: Michael Howell Date: Thu, 3 Feb 2022 17:01:32 -0700 Subject: [PATCH] rustdoc: remove unused Hash impl --- src/librustdoc/clean/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustdoc/clean/types.rs b/src/librustdoc/clean/types.rs index 0263369827360..6c0d2380aa2a6 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,