瀏覽代碼

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

Squelch dead-code warning.
Jack Huey 1 年之前
父節點
當前提交
055e12ba09
共有 1 個文件被更改,包括 4 次插入1 次删除
  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 {