Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/markup.rs')
-rw-r--r--crates/ide/src/markup.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/markup.rs b/crates/ide/src/markup.rs
index 4a4e29fa33..750d125426 100644
--- a/crates/ide/src/markup.rs
+++ b/crates/ide/src/markup.rs
@@ -5,7 +5,7 @@
//! what is used by LSP, so let's keep it simple.
use std::fmt;
-#[derive(Default, Debug)]
+#[derive(Clone, Default, Debug, Hash, PartialEq, Eq)]
pub struct Markup {
text: String,
}