Explorar el Código

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

Squelch dead-code warning.
Jack Huey hace 1 año
padre
commit
055e12ba09
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  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 {