ソースを参照

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 {