Pārlūkot izejas kodu

Allow unused on never-read fields

Mark Rousskov 3 gadi atpakaļ
vecāks
revīzija
41a793d08c
2 mainītis faili ar 5 papildinājumiem un 0 dzēšanām
  1. 3 0
      src/github.rs
  2. 2 0
      src/zulip.rs

+ 3 - 0
src/github.rs

@@ -76,6 +76,7 @@ impl GithubClient {
     ) -> BoxFuture<Result<Response, reqwest::Error>> {
         #[derive(Debug, serde::Deserialize)]
         struct RateLimit {
+            #[allow(unused)]
             pub limit: u64,
             pub remaining: u64,
             pub reset: u64,
@@ -90,7 +91,9 @@ impl GithubClient {
         struct Resources {
             pub core: RateLimit,
             pub search: RateLimit,
+            #[allow(unused)]
             pub graphql: RateLimit,
+            #[allow(unused)]
             pub source_import: RateLimit,
         }
 

+ 2 - 0
src/zulip.rs

@@ -22,12 +22,14 @@ pub struct Request {
 #[derive(Debug, serde::Deserialize)]
 struct Message {
     sender_id: u64,
+    #[allow(unused)]
     recipient_id: u64,
     sender_short_name: Option<String>,
     sender_full_name: String,
     stream_id: Option<u64>,
     // The topic of the incoming message. Not the stream name.
     subject: Option<String>,
+    #[allow(unused)]
     #[serde(rename = "type")]
     type_: String,
 }