Parcourir la source

Merge pull request #1763 from ehuss/dead-code-webhook

Squelch dead-code warning.
Jack Huey il y a 1 an
Parent
commit
055e12ba09
1 fichiers modifiés avec 4 ajouts et 1 suppressions
  1. 4 1
      src/lib.rs

+ 4 - 1
src/lib.rs

@@ -114,7 +114,10 @@ impl fmt::Display for EventName {
 }
 
 #[derive(Debug)]
-pub struct WebhookError(anyhow::Error);
+pub struct WebhookError(
+    #[allow(dead_code)] // Used in debug display
+    anyhow::Error,
+);
 
 impl From<anyhow::Error> for WebhookError {
     fn from(e: anyhow::Error) -> WebhookError {