summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBotahamec <botahamec@outlook.com>2022-10-26 22:39:04 -0400
committerBotahamec <botahamec@outlook.com>2022-10-26 22:39:04 -0400
commit083eb5c3161f10192638abd0b29a687e4a285a60 (patch)
tree217668d1d7e03d895243007a9bfd0b8ca6cbcec1 /src
parent7f73e25dfb47f860b9bbd0ad594b9a6695b8c597 (diff)
Removed derive traits
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 3e18d9f..248cdcc 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -5,7 +5,7 @@ thread_local! {
pub static KEY: Mutex<Option<ThreadKey>> = Mutex::new(Some(unsafe { ThreadKey::new() }));
}
-#[derive(Debug, PartialEq, Eq, Hash)]
+#[derive(Debug)]
pub struct ThreadKey {
_priv: *const (), // this isn't Send or Sync
}